home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / gnu-c / src / gcc-2.7.0-amiga / reorg.c < prev    next >
C/C++ Source or Header  |  1995-06-15  |  142KB  |  4,412 lines

  1. /* Perform instruction reorganizations for delay slot filling.
  2.    Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
  3.    Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu).
  4.    Hacked by Michael Tiemann (tiemann@cygnus.com).
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 59 Temple Place - Suite 330,
  21. Boston, MA 02111-1307, USA.  */
  22.  
  23. /* Instruction reorganization pass.
  24.  
  25.    This pass runs after register allocation and final jump
  26.    optimization.  It should be the last pass to run before peephole.
  27.    It serves primarily to fill delay slots of insns, typically branch
  28.    and call insns.  Other insns typically involve more complicated
  29.    interactions of data dependencies and resource constraints, and
  30.    are better handled by scheduling before register allocation (by the
  31.    function `schedule_insns').
  32.  
  33.    The Branch Penalty is the number of extra cycles that are needed to
  34.    execute a branch insn.  On an ideal machine, branches take a single
  35.    cycle, and the Branch Penalty is 0.  Several RISC machines approach
  36.    branch delays differently:
  37.  
  38.    The MIPS and AMD 29000 have a single branch delay slot.  Most insns
  39.    (except other branches) can be used to fill this slot.  When the
  40.    slot is filled, two insns execute in two cycles, reducing the
  41.    branch penalty to zero.
  42.  
  43.    The Motorola 88000 conditionally exposes its branch delay slot,
  44.    so code is shorter when it is turned off, but will run faster
  45.    when useful insns are scheduled there.
  46.  
  47.    The IBM ROMP has two forms of branch and call insns, both with and
  48.    without a delay slot.  Much like the 88k, insns not using the delay
  49.    slot can be shorted (2 bytes vs. 4 bytes), but will run slowed.
  50.  
  51.    The SPARC always has a branch delay slot, but its effects can be
  52.    annulled when the branch is not taken.  This means that failing to
  53.    find other sources of insns, we can hoist an insn from the branch
  54.    target that would only be safe to execute knowing that the branch
  55.    is taken.
  56.  
  57.    The HP-PA always has a branch delay slot.  For unconditional branches
  58.    its effects can be annulled when the branch is taken.  The effects 
  59.    of the delay slot in a conditional branch can be nullified for forward
  60.    taken branches, or for untaken backward branches.  This means
  61.    we can hoist insns from the fall-through path for forward branches or
  62.    steal insns from the target of backward branches.
  63.  
  64.    Three techniques for filling delay slots have been implemented so far:
  65.  
  66.    (1) `fill_simple_delay_slots' is the simplest, most efficient way
  67.    to fill delay slots.  This pass first looks for insns which come
  68.    from before the branch and which are safe to execute after the
  69.    branch.  Then it searches after the insn requiring delay slots or,
  70.    in the case of a branch, for insns that are after the point at
  71.    which the branch merges into the fallthrough code, if such a point
  72.    exists.  When such insns are found, the branch penalty decreases
  73.    and no code expansion takes place.
  74.  
  75.    (2) `fill_eager_delay_slots' is more complicated: it is used for
  76.    scheduling conditional jumps, or for scheduling jumps which cannot
  77.    be filled using (1).  A machine need not have annulled jumps to use
  78.    this strategy, but it helps (by keeping more options open).
  79.    `fill_eager_delay_slots' tries to guess the direction the branch
  80.    will go; if it guesses right 100% of the time, it can reduce the
  81.    branch penalty as much as `fill_simple_delay_slots' does.  If it
  82.    guesses wrong 100% of the time, it might as well schedule nops (or
  83.    on the m88k, unexpose the branch slot).  When
  84.    `fill_eager_delay_slots' takes insns from the fall-through path of
  85.    the jump, usually there is no code expansion; when it takes insns
  86.    from the branch target, there is code expansion if it is not the
  87.    only way to reach that target.
  88.  
  89.    (3) `relax_delay_slots' uses a set of rules to simplify code that
  90.    has been reorganized by (1) and (2).  It finds cases where
  91.    conditional test can be eliminated, jumps can be threaded, extra
  92.    insns can be eliminated, etc.  It is the job of (1) and (2) to do a
  93.    good job of scheduling locally; `relax_delay_slots' takes care of
  94.    making the various individual schedules work well together.  It is
  95.    especially tuned to handle the control flow interactions of branch
  96.    insns.  It does nothing for insns with delay slots that do not
  97.    branch.
  98.  
  99.    On machines that use CC0, we are very conservative.  We will not make
  100.    a copy of an insn involving CC0 since we want to maintain a 1-1
  101.    correspondence between the insn that sets and uses CC0.  The insns are
  102.    allowed to be separated by placing an insn that sets CC0 (but not an insn
  103.    that uses CC0; we could do this, but it doesn't seem worthwhile) in a
  104.    delay slot.  In that case, we point each insn at the other with REG_CC_USER
  105.    and REG_CC_SETTER notes.  Note that these restrictions affect very few
  106.    machines because most RISC machines with delay slots will not use CC0
  107.    (the RT is the only known exception at this point).
  108.  
  109.    Not yet implemented:
  110.  
  111.    The Acorn Risc Machine can conditionally execute most insns, so
  112.    it is profitable to move single insns into a position to execute
  113.    based on the condition code of the previous insn.
  114.  
  115.    The HP-PA can conditionally nullify insns, providing a similar
  116.    effect to the ARM, differing mostly in which insn is "in charge".   */
  117.  
  118. #include <stdio.h>
  119. #include "config.h"
  120. #include "rtl.h"
  121. #include "insn-config.h"
  122. #include "conditions.h"
  123. #include "hard-reg-set.h"
  124. #include "basic-block.h"
  125. #include "regs.h"
  126. #include "insn-flags.h"
  127. #include "recog.h"
  128. #include "flags.h"
  129. #include "output.h"
  130. #include "obstack.h"
  131. #include "insn-attr.h"
  132.  
  133. #ifdef DELAY_SLOTS
  134.  
  135. #define obstack_chunk_alloc xmalloc
  136. #define obstack_chunk_free free
  137.  
  138. #ifndef ANNUL_IFTRUE_SLOTS
  139. #define eligible_for_annul_true(INSN, SLOTS, TRIAL, FLAGS) 0
  140. #endif
  141. #ifndef ANNUL_IFFALSE_SLOTS
  142. #define eligible_for_annul_false(INSN, SLOTS, TRIAL, FLAGS) 0
  143. #endif
  144.  
  145. /* Insns which have delay slots that have not yet been filled.  */
  146.  
  147. static struct obstack unfilled_slots_obstack;
  148. static rtx *unfilled_firstobj;
  149.  
  150. /* Define macros to refer to the first and last slot containing unfilled
  151.    insns.  These are used because the list may move and its address
  152.    should be recomputed at each use.  */
  153.  
  154. #define unfilled_slots_base    \
  155.   ((rtx *) obstack_base (&unfilled_slots_obstack))
  156.  
  157. #define unfilled_slots_next    \
  158.   ((rtx *) obstack_next_free (&unfilled_slots_obstack))
  159.  
  160. /* This structure is used to indicate which hardware resources are set or
  161.    needed by insns so far.  */
  162.  
  163. struct resources
  164. {
  165.   char memory;            /* Insn sets or needs a memory location.  */
  166.   char unch_memory;        /* Insn sets of needs a "unchanging" MEM. */
  167.   char volatil;            /* Insn sets or needs a volatile memory loc. */
  168.   char cc;            /* Insn sets or needs the condition codes.  */
  169.   HARD_REG_SET regs;        /* Which registers are set or needed.  */
  170. };
  171.  
  172. /* Macro to clear all resources.  */
  173. #define CLEAR_RESOURCE(RES)    \
  174.  do { (RES)->memory = (RES)->unch_memory = (RES)->volatil = (RES)->cc = 0; \
  175.       CLEAR_HARD_REG_SET ((RES)->regs); } while (0)
  176.  
  177. /* Indicates what resources are required at the beginning of the epilogue.  */
  178. static struct resources start_of_epilogue_needs;
  179.  
  180. /* Indicates what resources are required at function end.  */
  181. static struct resources end_of_function_needs;
  182.  
  183. /* Points to the label before the end of the function.  */
  184. static rtx end_of_function_label;
  185.  
  186. /* This structure is used to record liveness information at the targets or
  187.    fallthrough insns of branches.  We will most likely need the information
  188.    at targets again, so save them in a hash table rather than recomputing them
  189.    each time.  */
  190.  
  191. struct target_info
  192. {
  193.   int uid;            /* INSN_UID of target.  */
  194.   struct target_info *next;    /* Next info for same hash bucket.  */
  195.   HARD_REG_SET live_regs;    /* Registers live at target.  */
  196.   int block;            /* Basic block number containing target.  */
  197.   int bb_tick;            /* Generation count of basic block info.  */
  198. };
  199.  
  200. #define TARGET_HASH_PRIME 257
  201.  
  202. /* Define the hash table itself.  */
  203. static struct target_info **target_hash_table;
  204.  
  205. /* For each basic block, we maintain a generation number of its basic
  206.    block info, which is updated each time we move an insn from the
  207.    target of a jump.  This is the generation number indexed by block
  208.    number.  */
  209.  
  210. static int *bb_ticks;
  211.  
  212. /* Mapping between INSN_UID's and position in the code since INSN_UID's do
  213.    not always monotonically increase.  */
  214. static int *uid_to_ruid;
  215.  
  216. /* Highest valid index in `uid_to_ruid'.  */
  217. static int max_uid;
  218.  
  219. static void mark_referenced_resources PROTO((rtx, struct resources *, int));
  220. static void mark_set_resources    PROTO((rtx, struct resources *, int, int));
  221. static int stop_search_p    PROTO((rtx, int));
  222. static int resource_conflicts_p    PROTO((struct resources *,
  223.                        struct resources *));
  224. static int insn_references_resource_p PROTO((rtx, struct resources *, int));
  225. static int insn_sets_resources_p PROTO((rtx, struct resources *, int));
  226. static rtx find_end_label    PROTO((void));
  227. static rtx emit_delay_sequence    PROTO((rtx, rtx, int, int));
  228. static rtx add_to_delay_list    PROTO((rtx, rtx));
  229. static void delete_from_delay_slot PROTO((rtx));
  230. static void delete_scheduled_jump PROTO((rtx));
  231. static void note_delay_statistics PROTO((int, int));
  232. static rtx optimize_skip    PROTO((rtx));
  233. static int get_jump_flags PROTO((rtx, rtx));
  234. static int rare_destination PROTO((rtx));
  235. static int mostly_true_jump    PROTO((rtx, rtx));
  236. static rtx get_branch_condition    PROTO((rtx, rtx));
  237. static int condition_dominates_p PROTO((rtx, rtx));
  238. static rtx steal_delay_list_from_target PROTO((rtx, rtx, rtx, rtx,
  239.                            struct resources *,
  240.                            struct resources *,
  241.                            struct resources *,
  242.                            int, int *, int *, rtx *));
  243. static rtx steal_delay_list_from_fallthrough PROTO((rtx, rtx, rtx, rtx,
  244.                             struct resources *,
  245.                             struct resources *,
  246.                             struct resources *,
  247.                             int, int *, int *));
  248. static void try_merge_delay_insns PROTO((rtx, rtx));
  249. static rtx redundant_insn    PROTO((rtx, rtx, rtx));
  250. static int own_thread_p        PROTO((rtx, rtx, int));
  251. static int find_basic_block    PROTO((rtx));
  252. static void update_block    PROTO((rtx, rtx));
  253. static int reorg_redirect_jump PROTO((rtx, rtx));
  254. static void update_reg_dead_notes PROTO((rtx, rtx));
  255. static void update_reg_unused_notes PROTO((rtx, rtx));
  256. static void update_live_status    PROTO((rtx, rtx));
  257. static rtx next_insn_no_annul    PROTO((rtx));
  258. static void mark_target_live_regs PROTO((rtx, struct resources *));
  259. static void fill_simple_delay_slots PROTO((rtx, int));
  260. static rtx fill_slots_from_thread PROTO((rtx, rtx, rtx, rtx, int, int,
  261.                      int, int, int, int *));
  262. static void fill_eager_delay_slots PROTO((rtx));
  263. static void relax_delay_slots    PROTO((rtx));
  264. static void make_return_insns    PROTO((rtx));
  265. static int redirect_with_delay_slots_safe_p PROTO ((rtx, rtx, rtx));
  266. static int redirect_with_delay_list_safe_p PROTO ((rtx, rtx, rtx));
  267.  
  268. /* Given X, some rtl, and RES, a pointer to a `struct resource', mark
  269.    which resources are references by the insn.  If INCLUDE_CALLED_ROUTINE
  270.    is TRUE, resources used by the called routine will be included for
  271.    CALL_INSNs.  */
  272.  
  273. static void
  274. mark_referenced_resources (x, res, include_delayed_effects)
  275.      register rtx x;
  276.      register struct resources *res;
  277.      register int include_delayed_effects;
  278. {
  279.   register enum rtx_code code = GET_CODE (x);
  280.   register int i, j;
  281.   register char *format_ptr;
  282.  
  283.   /* Handle leaf items for which we set resource flags.  Also, special-case
  284.      CALL, SET and CLOBBER operators.  */
  285.   switch (code)
  286.     {
  287.     case CONST:
  288.     case CONST_INT:
  289.     case CONST_DOUBLE:
  290.     case PC:
  291.     case SYMBOL_REF:
  292.     case LABEL_REF:
  293.       return;
  294.  
  295.     case SUBREG:
  296.       if (GET_CODE (SUBREG_REG (x)) != REG)
  297.     mark_referenced_resources (SUBREG_REG (x), res, 0);
  298.       else
  299.     {
  300.       int regno = REGNO (SUBREG_REG (x)) + SUBREG_WORD (x);
  301.       int last_regno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
  302.       for (i = regno; i < last_regno; i++)
  303.         SET_HARD_REG_BIT (res->regs, i);
  304.     }
  305.       return;
  306.  
  307.     case REG:
  308.       for (i = 0; i < HARD_REGNO_NREGS (REGNO (x), GET_MODE (x)); i++)
  309.     SET_HARD_REG_BIT (res->regs, REGNO (x) + i);
  310.       return;
  311.  
  312.     case MEM:
  313.       /* If this memory shouldn't change, it really isn't referencing
  314.      memory.  */
  315.       if (RTX_UNCHANGING_P (x))
  316.     res->unch_memory = 1;
  317.       else
  318.     res->memory = 1;
  319.       res->volatil = MEM_VOLATILE_P (x);
  320.  
  321.       /* Mark registers used to access memory.  */
  322.       mark_referenced_resources (XEXP (x, 0), res, 0);
  323.       return;
  324.  
  325.     case CC0:
  326.       res->cc = 1;
  327.       return;
  328.  
  329.     case UNSPEC_VOLATILE:
  330.     case ASM_INPUT:
  331.       /* Traditional asm's are always volatile.  */
  332.       res->volatil = 1;
  333.       return;
  334.  
  335.     case ASM_OPERANDS:
  336.       res->volatil = MEM_VOLATILE_P (x);
  337.  
  338.       /* For all ASM_OPERANDS, we must traverse the vector of input operands.
  339.      We can not just fall through here since then we would be confused
  340.      by the ASM_INPUT rtx inside ASM_OPERANDS, which do not indicate
  341.      traditional asms unlike their normal usage.  */
  342.       
  343.       for (i = 0; i < ASM_OPERANDS_INPUT_LENGTH (x); i++)
  344.     mark_referenced_resources (ASM_OPERANDS_INPUT (x, i), res, 0);
  345.       return;
  346.  
  347.     case CALL:
  348.       /* The first operand will be a (MEM (xxx)) but doesn't really reference
  349.      memory.  The second operand may be referenced, though.  */
  350.       mark_referenced_resources (XEXP (XEXP (x, 0), 0), res, 0);
  351.       mark_referenced_resources (XEXP (x, 1), res, 0);
  352.       return;
  353.  
  354.     case SET:
  355.       /* Usually, the first operand of SET is set, not referenced.  But
  356.      registers used to access memory are referenced.  SET_DEST is
  357.      also referenced if it is a ZERO_EXTRACT or SIGN_EXTRACT.  */
  358.  
  359.       mark_referenced_resources (SET_SRC (x), res, 0);
  360.  
  361.       x = SET_DEST (x);
  362.       if (GET_CODE (x) == SIGN_EXTRACT || GET_CODE (x) == ZERO_EXTRACT)
  363.     mark_referenced_resources (x, res, 0);
  364.       else if (GET_CODE (x) == SUBREG)
  365.     x = SUBREG_REG (x);
  366.       if (GET_CODE (x) == MEM)
  367.     mark_referenced_resources (XEXP (x, 0), res, 0);
  368.       return;
  369.  
  370.     case CLOBBER:
  371.       return;
  372.  
  373.     case CALL_INSN:
  374.       if (include_delayed_effects)
  375.     {
  376.       /* A CALL references memory, the frame pointer if it exists, the
  377.          stack pointer, any global registers and any registers given in
  378.          USE insns immediately in front of the CALL.
  379.  
  380.          However, we may have moved some of the parameter loading insns
  381.          into the delay slot of this CALL.  If so, the USE's for them
  382.          don't count and should be skipped.  */
  383.       rtx insn = PREV_INSN (x);
  384.       rtx sequence = 0;
  385.       int seq_size = 0;
  386.       rtx next = NEXT_INSN (x);
  387.       int i;
  388.  
  389.       /* If we are part of a delay slot sequence, point at the SEQUENCE. */
  390.       if (NEXT_INSN (insn) != x)
  391.         {
  392.           next = NEXT_INSN (NEXT_INSN (insn));
  393.           sequence = PATTERN (NEXT_INSN (insn));
  394.           seq_size = XVECLEN (sequence, 0);
  395.           if (GET_CODE (sequence) != SEQUENCE)
  396.         abort ();
  397.         }
  398.  
  399.       res->memory = 1;
  400.       SET_HARD_REG_BIT (res->regs, STACK_POINTER_REGNUM);
  401.       if (frame_pointer_needed)
  402.         {
  403.           SET_HARD_REG_BIT (res->regs, FRAME_POINTER_REGNUM);
  404. #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
  405.           SET_HARD_REG_BIT (res->regs, HARD_FRAME_POINTER_REGNUM);
  406. #endif
  407.         }
  408.  
  409.       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  410.         if (global_regs[i])
  411.           SET_HARD_REG_BIT (res->regs, i);
  412.  
  413.       /* Check for a NOTE_INSN_SETJMP.  If it exists, then we must
  414.          assume that this call can need any register.
  415.  
  416.          This is done to be more conservative about how we handle setjmp.
  417.          We assume that they both use and set all registers.  Using all
  418.          registers ensures that a register will not be considered dead
  419.          just because it crosses a setjmp call.  A register should be
  420.          considered dead only if the setjmp call returns non-zero.  */
  421.       if (next && GET_CODE (next) == NOTE
  422.           && NOTE_LINE_NUMBER (next) == NOTE_INSN_SETJMP)
  423.         SET_HARD_REG_SET (res->regs);
  424.  
  425.       {
  426.         rtx link;
  427.  
  428.         for (link = CALL_INSN_FUNCTION_USAGE (x);
  429.          link;
  430.          link = XEXP (link, 1))
  431.           if (GET_CODE (XEXP (link, 0)) == USE)
  432.         {
  433.           for (i = 1; i < seq_size; i++)
  434.             {
  435.               rtx slot_pat = PATTERN (XVECEXP (sequence, 0, i));
  436.               if (GET_CODE (slot_pat) == SET
  437.               && rtx_equal_p (SET_DEST (slot_pat),
  438.                       SET_DEST (XEXP (link, 0))))
  439.             break;
  440.             }
  441.           if (i >= seq_size)
  442.             mark_referenced_resources (SET_DEST (XEXP (link, 0)),
  443.                            res, 0);
  444.         }
  445.       }
  446.     }
  447.  
  448.       /* ... fall through to other INSN processing ... */
  449.  
  450.     case INSN:
  451.     case JUMP_INSN:
  452.  
  453. #ifdef INSN_REFERENCES_ARE_DELAYED
  454.       if (! include_delayed_effects
  455.       && INSN_REFERENCES_ARE_DELAYED (x))
  456.     return;
  457. #endif
  458.  
  459.       /* No special processing, just speed up.  */
  460.       mark_referenced_resources (PATTERN (x), res, include_delayed_effects);
  461.       return;
  462.     }
  463.  
  464.   /* Process each sub-expression and flag what it needs.  */
  465.   format_ptr = GET_RTX_FORMAT (code);
  466.   for (i = 0; i < GET_RTX_LENGTH (code); i++)
  467.     switch (*format_ptr++)
  468.       {
  469.       case 'e':
  470.     mark_referenced_resources (XEXP (x, i), res, include_delayed_effects);
  471.     break;
  472.  
  473.       case 'E':
  474.     for (j = 0; j < XVECLEN (x, i); j++)
  475.       mark_referenced_resources (XVECEXP (x, i, j), res,
  476.                      include_delayed_effects);
  477.     break;
  478.       }
  479. }
  480.  
  481. /* Given X, a part of an insn, and a pointer to a `struct resource', RES,
  482.    indicate which resources are modified by the insn. If INCLUDE_CALLED_ROUTINE
  483.    is nonzero, also mark resources potentially set by the called routine.
  484.  
  485.    If IN_DEST is nonzero, it means we are inside a SET.  Otherwise,
  486.    objects are being referenced instead of set.
  487.  
  488.    We never mark the insn as modifying the condition code unless it explicitly
  489.    SETs CC0 even though this is not totally correct.  The reason for this is
  490.    that we require a SET of CC0 to immediately precede the reference to CC0.
  491.    So if some other insn sets CC0 as a side-effect, we know it cannot affect
  492.    our computation and thus may be placed in a delay slot.   */
  493.  
  494. static void
  495. mark_set_resources (x, res, in_dest, include_delayed_effects)
  496.      register rtx x;
  497.      register struct resources *res;
  498.      int in_dest;
  499.      int include_delayed_effects;
  500. {
  501.   register enum rtx_code code;
  502.   register int i, j;
  503.   register char *format_ptr;
  504.  
  505.  restart:
  506.  
  507.   code = GET_CODE (x);
  508.  
  509.   switch (code)
  510.     {
  511.     case NOTE:
  512.     case BARRIER:
  513.     case CODE_LABEL:
  514.     case USE:
  515.     case CONST_INT:
  516.     case CONST_DOUBLE:
  517.     case LABEL_REF:
  518.     case SYMBOL_REF:
  519.     case CONST:
  520.     case PC:
  521.       /* These don't set any resources.  */
  522.       return;
  523.  
  524.     case CC0:
  525.       if (in_dest)
  526.     res->cc = 1;
  527.       return;
  528.  
  529.     case CALL_INSN:
  530.       /* Called routine modifies the condition code, memory, any registers
  531.      that aren't saved across calls, global registers and anything
  532.      explicitly CLOBBERed immediately after the CALL_INSN.  */
  533.  
  534.       if (include_delayed_effects)
  535.     {
  536.       rtx next = NEXT_INSN (x);
  537.       rtx prev = PREV_INSN (x);
  538.       rtx link;
  539.  
  540.       res->cc = res->memory = 1;
  541.       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  542.         if (call_used_regs[i] || global_regs[i])
  543.           SET_HARD_REG_BIT (res->regs, i);
  544.  
  545.       /* If X is part of a delay slot sequence, then NEXT should be
  546.          the first insn after the sequence.  */
  547.       if (NEXT_INSN (prev) != x)
  548.         next = NEXT_INSN (NEXT_INSN (prev));
  549.  
  550.       for (link = CALL_INSN_FUNCTION_USAGE (x);
  551.            link; link = XEXP (link, 1))
  552.         if (GET_CODE (XEXP (link, 0)) == CLOBBER)
  553.           mark_set_resources (SET_DEST (XEXP (link, 0)), res, 1, 0);
  554.  
  555.       /* Check for a NOTE_INSN_SETJMP.  If it exists, then we must
  556.          assume that this call can clobber any register.  */
  557.       if (next && GET_CODE (next) == NOTE
  558.           && NOTE_LINE_NUMBER (next) == NOTE_INSN_SETJMP)
  559.         SET_HARD_REG_SET (res->regs);
  560.     }
  561.  
  562.       /* ... and also what it's RTL says it modifies, if anything.  */
  563.  
  564.     case JUMP_INSN:
  565.     case INSN:
  566.  
  567.     /* An insn consisting of just a CLOBBER (or USE) is just for flow
  568.        and doesn't actually do anything, so we ignore it.  */
  569.  
  570. #ifdef INSN_SETS_ARE_DELAYED
  571.       if (! include_delayed_effects
  572.       && INSN_SETS_ARE_DELAYED (x))
  573.     return;
  574. #endif
  575.  
  576.       x = PATTERN (x);
  577.       if (GET_CODE (x) != USE && GET_CODE (x) != CLOBBER)
  578.     goto restart;
  579.       return;
  580.  
  581.     case SET:
  582.       /* If the source of a SET is a CALL, this is actually done by
  583.      the called routine.  So only include it if we are to include the
  584.      effects of the calling routine.  */
  585.  
  586.       mark_set_resources (SET_DEST (x), res,
  587.               (include_delayed_effects
  588.                || GET_CODE (SET_SRC (x)) != CALL),
  589.               0);
  590.  
  591.       mark_set_resources (SET_SRC (x), res, 0, 0);
  592.       return;
  593.  
  594.     case CLOBBER:
  595.       mark_set_resources (XEXP (x, 0), res, 1, 0);
  596.       return;
  597.       
  598.     case SEQUENCE:
  599.       for (i = 0; i < XVECLEN (x, 0); i++)
  600.     if (! (INSN_ANNULLED_BRANCH_P (XVECEXP (x, 0, 0))
  601.            && INSN_FROM_TARGET_P (XVECEXP (x, 0, i))))
  602.       mark_set_resources (XVECEXP (x, 0, i), res, 0,
  603.                   include_delayed_effects);
  604.       return;
  605.  
  606.     case POST_INC:
  607.     case PRE_INC:
  608.     case POST_DEC:
  609.     case PRE_DEC:
  610.       mark_set_resources (XEXP (x, 0), res, 1, 0);
  611.       return;
  612.  
  613.     case ZERO_EXTRACT:
  614.       mark_set_resources (XEXP (x, 0), res, in_dest, 0);
  615.       mark_set_resources (XEXP (x, 1), res, 0, 0);
  616.       mark_set_resources (XEXP (x, 2), res, 0, 0);
  617.       return;
  618.  
  619.     case MEM:
  620.       if (in_dest)
  621.     {
  622.       res->memory = 1;
  623.       res->unch_memory = RTX_UNCHANGING_P (x);
  624.       res->volatil = MEM_VOLATILE_P (x);
  625.     }
  626.  
  627.       mark_set_resources (XEXP (x, 0), res, 0, 0);
  628.       return;
  629.  
  630.     case SUBREG:
  631.       if (in_dest)
  632.     {
  633.       if (GET_CODE (SUBREG_REG (x)) != REG)
  634.         mark_set_resources (SUBREG_REG (x), res,
  635.                 in_dest, include_delayed_effects);
  636.       else
  637.         {
  638.           int regno = REGNO (SUBREG_REG (x)) + SUBREG_WORD (x);
  639.           int last_regno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
  640.           for (i = regno; i < last_regno; i++)
  641.         SET_HARD_REG_BIT (res->regs, i);
  642.         }
  643.     }
  644.       return;
  645.  
  646.     case REG:
  647.       if (in_dest)
  648.         for (i = 0; i < HARD_REGNO_NREGS (REGNO (x), GET_MODE (x)); i++)
  649.       SET_HARD_REG_BIT (res->regs, REGNO (x) + i);
  650.       return;
  651.     }
  652.  
  653.   /* Process each sub-expression and flag what it needs.  */
  654.   format_ptr = GET_RTX_FORMAT (code);
  655.   for (i = 0; i < GET_RTX_LENGTH (code); i++)
  656.     switch (*format_ptr++)
  657.       {
  658.       case 'e':
  659.     mark_set_resources (XEXP (x, i), res, in_dest, include_delayed_effects);
  660.     break;
  661.  
  662.       case 'E':
  663.     for (j = 0; j < XVECLEN (x, i); j++)
  664.       mark_set_resources (XVECEXP (x, i, j), res, in_dest,
  665.                   include_delayed_effects);
  666.     break;
  667.       }
  668. }
  669.  
  670. /* Return TRUE if this insn should stop the search for insn to fill delay
  671.    slots.  LABELS_P indicates that labels should terminate the search.
  672.    In all cases, jumps terminate the search.  */
  673.  
  674. static int
  675. stop_search_p (insn, labels_p)
  676.      rtx insn;
  677.      int labels_p;
  678. {
  679.   if (insn == 0)
  680.     return 1;
  681.  
  682.   switch (GET_CODE (insn))
  683.     {
  684.     case NOTE:
  685.     case CALL_INSN:
  686.       return 0;
  687.  
  688.     case CODE_LABEL:
  689.       return labels_p;
  690.  
  691.     case JUMP_INSN:
  692.     case BARRIER:
  693.       return 1;
  694.  
  695.     case INSN:
  696.       /* OK unless it contains a delay slot or is an `asm' insn of some type.
  697.      We don't know anything about these.  */
  698.       return (GET_CODE (PATTERN (insn)) == SEQUENCE
  699.           || GET_CODE (PATTERN (insn)) == ASM_INPUT
  700.           || asm_noperands (PATTERN (insn)) >= 0);
  701.  
  702.     default:
  703.       abort ();
  704.     }
  705. }
  706.  
  707. /* Return TRUE if any resources are marked in both RES1 and RES2 or if either
  708.    resource set contains a volatile memory reference.  Otherwise, return FALSE.  */
  709.  
  710. static int
  711. resource_conflicts_p (res1, res2)
  712.      struct resources *res1, *res2;
  713. {
  714.   if ((res1->cc && res2->cc) || (res1->memory && res2->memory)
  715.       || (res1->unch_memory && res2->unch_memory)
  716.       || res1->volatil || res2->volatil)
  717.     return 1;
  718.  
  719. #ifdef HARD_REG_SET
  720.   return (res1->regs & res2->regs) != HARD_CONST (0);
  721. #else
  722.   {
  723.     int i;
  724.  
  725.     for (i = 0; i < HARD_REG_SET_LONGS; i++)
  726.       if ((res1->regs[i] & res2->regs[i]) != 0)
  727.     return 1;
  728.     return 0;
  729.   }
  730. #endif
  731. }
  732.  
  733. /* Return TRUE if any resource marked in RES, a `struct resources', is
  734.    referenced by INSN.  If INCLUDE_CALLED_ROUTINE is set, return if the called
  735.    routine is using those resources.
  736.  
  737.    We compute this by computing all the resources referenced by INSN and
  738.    seeing if this conflicts with RES.  It might be faster to directly check
  739.    ourselves, and this is the way it used to work, but it means duplicating
  740.    a large block of complex code.  */
  741.  
  742. static int
  743. insn_references_resource_p (insn, res, include_delayed_effects)
  744.      register rtx insn;
  745.      register struct resources *res;
  746.      int include_delayed_effects;
  747. {
  748.   struct resources insn_res;
  749.  
  750.   CLEAR_RESOURCE (&insn_res);
  751.   mark_referenced_resources (insn, &insn_res, include_delayed_effects);
  752.   return resource_conflicts_p (&insn_res, res);
  753. }
  754.  
  755. /* Return TRUE if INSN modifies resources that are marked in RES.
  756.    INCLUDE_CALLED_ROUTINE is set if the actions of that routine should be
  757.    included.   CC0 is only modified if it is explicitly set; see comments
  758.    in front of mark_set_resources for details.  */
  759.  
  760. static int
  761. insn_sets_resource_p (insn, res, include_delayed_effects)
  762.      register rtx insn;
  763.      register struct resources *res;
  764.      int include_delayed_effects;
  765. {
  766.   struct resources insn_sets;
  767.  
  768.   CLEAR_RESOURCE (&insn_sets);
  769.   mark_set_resources (insn, &insn_sets, 0, include_delayed_effects);
  770.   return resource_conflicts_p (&insn_sets, res);
  771. }
  772.  
  773. /* Find a label at the end of the function or before a RETURN.  If there is
  774.    none, make one.  */
  775.  
  776. static rtx
  777. find_end_label ()
  778. {
  779.   rtx insn;
  780.  
  781.   /* If we found one previously, return it.  */
  782.   if (end_of_function_label)
  783.     return end_of_function_label;
  784.  
  785.   /* Otherwise, see if there is a label at the end of the function.  If there
  786.      is, it must be that RETURN insns aren't needed, so that is our return
  787.      label and we don't have to do anything else.  */
  788.  
  789.   insn = get_last_insn ();
  790.   while (GET_CODE (insn) == NOTE
  791.      || (GET_CODE (insn) == INSN
  792.          && (GET_CODE (PATTERN (insn)) == USE
  793.          || GET_CODE (PATTERN (insn)) == CLOBBER)))
  794.     insn = PREV_INSN (insn);
  795.  
  796.   /* When a target threads its epilogue we might already have a 
  797.      suitable return insn.  If so put a label before it for the
  798.      end_of_function_label.  */
  799.   if (GET_CODE (insn) == BARRIER
  800.       && GET_CODE (PREV_INSN (insn)) == JUMP_INSN
  801.       && GET_CODE (PATTERN (PREV_INSN (insn))) == RETURN)
  802.     {
  803.       rtx temp = PREV_INSN (PREV_INSN (insn));
  804.       end_of_function_label = gen_label_rtx ();
  805.       LABEL_NUSES (end_of_function_label) = 0;
  806.  
  807.       /* Put the label before an USE insns that may proceed the RETURN insn. */
  808.       while (GET_CODE (temp) == USE)
  809.     temp = PREV_INSN (temp);
  810.  
  811.       emit_label_after (end_of_function_label, temp);
  812.     }
  813.  
  814.   else if (GET_CODE (insn) == CODE_LABEL)
  815.     end_of_function_label = insn;
  816.   else
  817.     {
  818.       /* Otherwise, make a new label and emit a RETURN and BARRIER,
  819.      if needed.  */
  820.       end_of_function_label = gen_label_rtx ();
  821.       LABEL_NUSES (end_of_function_label) = 0;
  822.       emit_label (end_of_function_label);
  823. #ifdef HAVE_return
  824.       if (HAVE_return)
  825.     {
  826.       /* The return we make may have delay slots too.  */
  827.       rtx insn = gen_return ();
  828.       insn = emit_jump_insn (insn);
  829.       emit_barrier ();
  830.           if (num_delay_slots (insn) > 0)
  831.         obstack_ptr_grow (&unfilled_slots_obstack, insn);
  832.     }
  833. #endif
  834.     }
  835.  
  836.   /* Show one additional use for this label so it won't go away until
  837.      we are done.  */
  838.   ++LABEL_NUSES (end_of_function_label);
  839.  
  840.   return end_of_function_label;
  841. }
  842.  
  843. /* Put INSN and LIST together in a SEQUENCE rtx of LENGTH, and replace
  844.    the pattern of INSN with the SEQUENCE.
  845.  
  846.    Chain the insns so that NEXT_INSN of each insn in the sequence points to
  847.    the next and NEXT_INSN of the last insn in the sequence points to
  848.    the first insn after the sequence.  Similarly for PREV_INSN.  This makes
  849.    it easier to scan all insns.
  850.  
  851.    Returns the SEQUENCE that replaces INSN.  */
  852.  
  853. static rtx
  854. emit_delay_sequence (insn, list, length, avail)
  855.      rtx insn;
  856.      rtx list;
  857.      int length;
  858.      int avail;
  859. {
  860.   register int i = 1;
  861.   register rtx li;
  862.   int had_barrier = 0;
  863.  
  864.   /* Allocate the the rtvec to hold the insns and the SEQUENCE. */
  865.   rtvec seqv = rtvec_alloc (length + 1);
  866.   rtx seq = gen_rtx (SEQUENCE, VOIDmode, seqv);
  867.   rtx seq_insn = make_insn_raw (seq);
  868.   rtx first = get_insns ();
  869.   rtx last = get_last_insn ();
  870.  
  871.   /* Make a copy of the insn having delay slots. */
  872.   rtx delay_insn = copy_rtx (insn);
  873.  
  874.   /* If INSN is followed by a BARRIER, delete the BARRIER since it will only
  875.      confuse further processing.  Update LAST in case it was the last insn.  
  876.      We will put the BARRIER back in later.  */
  877.   if (NEXT_INSN (insn) && GET_CODE (NEXT_INSN (insn)) == BARRIER)
  878.     {
  879.       delete_insn (NEXT_INSN (insn));
  880.       last = get_last_insn ();
  881.       had_barrier = 1;
  882.     }
  883.  
  884.   /* Splice our SEQUENCE into the insn stream where INSN used to be.  */
  885.   NEXT_INSN (seq_insn) = NEXT_INSN (insn);
  886.   PREV_INSN (seq_insn) = PREV_INSN (insn);
  887.  
  888.   if (insn == last)
  889.     set_new_first_and_last_insn (first, seq_insn);
  890.   else
  891.     PREV_INSN (NEXT_INSN (seq_insn)) = seq_insn;
  892.  
  893.   if (insn == first)
  894.     set_new_first_and_last_insn (seq_insn, last);
  895.   else
  896.     NEXT_INSN (PREV_INSN (seq_insn)) = seq_insn;
  897.  
  898.   /* Build our SEQUENCE and rebuild the insn chain.  */
  899.   XVECEXP (seq, 0, 0) = delay_insn;
  900.   INSN_DELETED_P (delay_insn) = 0;
  901.   PREV_INSN (delay_insn) = PREV_INSN (seq_insn);
  902.  
  903.   for (li = list; li; li = XEXP (li, 1), i++)
  904.     {
  905.       rtx tem = XEXP (li, 0);
  906.       rtx note;
  907.  
  908.       /* Show that this copy of the insn isn't deleted.  */
  909.       INSN_DELETED_P (tem) = 0;
  910.  
  911.       XVECEXP (seq, 0, i) = tem;
  912.       PREV_INSN (tem) = XVECEXP (seq, 0, i - 1);
  913.       NEXT_INSN (XVECEXP (seq, 0, i - 1)) = tem;
  914.  
  915.       /* Remove any REG_DEAD notes because we can't rely on them now
  916.      that the insn has been moved.  */
  917.       for (note = REG_NOTES (tem); note; note = XEXP (note, 1))
  918.     if (REG_NOTE_KIND (note) == REG_DEAD)
  919.       XEXP (note, 0) = const0_rtx;
  920.     }
  921.  
  922.   NEXT_INSN (XVECEXP (seq, 0, length)) = NEXT_INSN (seq_insn);
  923.  
  924.   /* If the previous insn is a SEQUENCE, update the NEXT_INSN pointer on the
  925.      last insn in that SEQUENCE to point to us.  Similarly for the first
  926.      insn in the following insn if it is a SEQUENCE.  */
  927.  
  928.   if (PREV_INSN (seq_insn) && GET_CODE (PREV_INSN (seq_insn)) == INSN
  929.       && GET_CODE (PATTERN (PREV_INSN (seq_insn))) == SEQUENCE)
  930.     NEXT_INSN (XVECEXP (PATTERN (PREV_INSN (seq_insn)), 0,
  931.             XVECLEN (PATTERN (PREV_INSN (seq_insn)), 0) - 1))
  932.       = seq_insn;
  933.  
  934.   if (NEXT_INSN (seq_insn) && GET_CODE (NEXT_INSN (seq_insn)) == INSN
  935.       && GET_CODE (PATTERN (NEXT_INSN (seq_insn))) == SEQUENCE)
  936.     PREV_INSN (XVECEXP (PATTERN (NEXT_INSN (seq_insn)), 0, 0)) = seq_insn;
  937.     
  938.   /* If there used to be a BARRIER, put it back.  */
  939.   if (had_barrier)
  940.     emit_barrier_after (seq_insn);
  941.  
  942.   if (i != length + 1)
  943.     abort ();
  944.  
  945.   return seq_insn;
  946. }
  947.  
  948. /* Add INSN to DELAY_LIST and return the head of the new list.  The list must
  949.    be in the order in which the insns are to be executed.  */
  950.  
  951. static rtx
  952. add_to_delay_list (insn, delay_list)
  953.      rtx insn;
  954.      rtx delay_list;
  955. {
  956.   /* If we have an empty list, just make a new list element.  If
  957.      INSN has it's block number recorded, clear it since we may
  958.      be moving the insn to a new block.  */
  959.  
  960.   if (delay_list == 0)
  961.     {
  962.       struct target_info *tinfo;
  963.       
  964.       for (tinfo = target_hash_table[INSN_UID (insn) % TARGET_HASH_PRIME];
  965.        tinfo; tinfo = tinfo->next)
  966.     if (tinfo->uid == INSN_UID (insn))
  967.       break;
  968.  
  969.       if (tinfo)
  970.     tinfo->block = -1;
  971.  
  972.       return gen_rtx (INSN_LIST, VOIDmode, insn, NULL_RTX);
  973.     }
  974.  
  975.   /* Otherwise this must be an INSN_LIST.  Add INSN to the end of the
  976.      list.  */
  977.   XEXP (delay_list, 1) = add_to_delay_list (insn, XEXP (delay_list, 1));
  978.  
  979.   return delay_list;
  980. }   
  981.  
  982. /* Delete INSN from the the delay slot of the insn that it is in.  This may
  983.    produce an insn without anything in its delay slots.  */
  984.  
  985. static void
  986. delete_from_delay_slot (insn)
  987.      rtx insn;
  988. {
  989.   rtx trial, seq_insn, seq, prev;
  990.   rtx delay_list = 0;
  991.   int i;
  992.  
  993.   /* We first must find the insn containing the SEQUENCE with INSN in its
  994.      delay slot.  Do this by finding an insn, TRIAL, where
  995.      PREV_INSN (NEXT_INSN (TRIAL)) != TRIAL.  */
  996.  
  997.   for (trial = insn;
  998.        PREV_INSN (NEXT_INSN (trial)) == trial;
  999.        trial = NEXT_INSN (trial))
  1000.     ;
  1001.  
  1002.   seq_insn = PREV_INSN (NEXT_INSN (trial));
  1003.   seq = PATTERN (seq_insn);
  1004.  
  1005.   /* Create a delay list consisting of all the insns other than the one
  1006.      we are deleting (unless we were the only one).  */
  1007.   if (XVECLEN (seq, 0) > 2)
  1008.     for (i = 1; i < XVECLEN (seq, 0); i++)
  1009.       if (XVECEXP (seq, 0, i) != insn)
  1010.     delay_list = add_to_delay_list (XVECEXP (seq, 0, i), delay_list);
  1011.  
  1012.   /* Delete the old SEQUENCE, re-emit the insn that used to have the delay
  1013.      list, and rebuild the delay list if non-empty.  */
  1014.   prev = PREV_INSN (seq_insn);
  1015.   trial = XVECEXP (seq, 0, 0);
  1016.   delete_insn (seq_insn);
  1017.   add_insn_after (trial, prev);
  1018.  
  1019.   if (GET_CODE (trial) == JUMP_INSN
  1020.       && (simplejump_p (trial) || GET_CODE (PATTERN (trial)) == RETURN))
  1021.     emit_barrier_after (trial);
  1022.  
  1023.   /* If there are any delay insns, remit them.  Otherwise clear the
  1024.      annul flag.  */
  1025.   if (delay_list)
  1026.     trial = emit_delay_sequence (trial, delay_list, XVECLEN (seq, 0) - 2, 0);
  1027.   else
  1028.     INSN_ANNULLED_BRANCH_P (trial) = 0;
  1029.  
  1030.   INSN_FROM_TARGET_P (insn) = 0;
  1031.  
  1032.   /* Show we need to fill this insn again.  */
  1033.   obstack_ptr_grow (&unfilled_slots_obstack, trial);
  1034. }
  1035.  
  1036. /* Delete INSN, a JUMP_INSN.  If it is a conditional jump, we must track down
  1037.    the insn that sets CC0 for it and delete it too.  */
  1038.  
  1039. static void
  1040. delete_scheduled_jump (insn)
  1041.      rtx insn;
  1042. {
  1043.   /* Delete the insn that sets cc0 for us.  On machines without cc0, we could
  1044.      delete the insn that sets the condition code, but it is hard to find it.
  1045.      Since this case is rare anyway, don't bother trying; there would likely
  1046.      be other insns that became dead anyway, which we wouldn't know to
  1047.      delete.  */
  1048.  
  1049. #ifdef HAVE_cc0
  1050.   if (reg_mentioned_p (cc0_rtx, insn))
  1051.     {
  1052.       rtx note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
  1053.  
  1054.       /* If a reg-note was found, it points to an insn to set CC0.  This
  1055.      insn is in the delay list of some other insn.  So delete it from
  1056.      the delay list it was in.  */
  1057.       if (note)
  1058.     {
  1059.       if (! FIND_REG_INC_NOTE (XEXP (note, 0), NULL_RTX)
  1060.           && sets_cc0_p (PATTERN (XEXP (note, 0))) == 1)
  1061.         delete_from_delay_slot (XEXP (note, 0));
  1062.     }
  1063.       else
  1064.     {
  1065.       /* The insn setting CC0 is our previous insn, but it may be in
  1066.          a delay slot.  It will be the last insn in the delay slot, if
  1067.          it is.  */
  1068.       rtx trial = previous_insn (insn);
  1069.       if (GET_CODE (trial) == NOTE)
  1070.         trial = prev_nonnote_insn (trial);
  1071.       if (sets_cc0_p (PATTERN (trial)) != 1
  1072.           || FIND_REG_INC_NOTE (trial, 0))
  1073.         return;
  1074.       if (PREV_INSN (NEXT_INSN (trial)) == trial)
  1075.         delete_insn (trial);
  1076.       else
  1077.         delete_from_delay_slot (trial);
  1078.     }
  1079.     }
  1080. #endif
  1081.  
  1082.   delete_insn (insn);
  1083. }
  1084.  
  1085. /* Counters for delay-slot filling.  */
  1086.  
  1087. #define NUM_REORG_FUNCTIONS 2
  1088. #define MAX_DELAY_HISTOGRAM 3
  1089. #define MAX_REORG_PASSES 2
  1090.  
  1091. static int num_insns_needing_delays[NUM_REORG_FUNCTIONS][MAX_REORG_PASSES];
  1092.  
  1093. static int num_filled_delays[NUM_REORG_FUNCTIONS][MAX_DELAY_HISTOGRAM+1][MAX_REORG_PASSES];
  1094.  
  1095. static int reorg_pass_number;
  1096.  
  1097. static void
  1098. note_delay_statistics (slots_filled, index)
  1099.      int slots_filled, index;
  1100. {
  1101.   num_insns_needing_delays[index][reorg_pass_number]++;
  1102.   if (slots_filled > MAX_DELAY_HISTOGRAM)
  1103.     slots_filled = MAX_DELAY_HISTOGRAM;
  1104.   num_filled_delays[index][slots_filled][reorg_pass_number]++;
  1105. }
  1106.  
  1107. #if defined(ANNUL_IFFALSE_SLOTS) || defined(ANNUL_IFTRUE_SLOTS)
  1108.  
  1109. /* Optimize the following cases:
  1110.  
  1111.    1.  When a conditional branch skips over only one instruction,
  1112.        use an annulling branch and put that insn in the delay slot.
  1113.        Use either a branch that annuls when the condition if true or
  1114.        invert the test with a branch that annuls when the condition is
  1115.        false.  This saves insns, since otherwise we must copy an insn
  1116.        from the L1 target.
  1117.  
  1118.         (orig)         (skip)        (otherwise)
  1119.     Bcc.n L1    Bcc',a L1    Bcc,a L1'
  1120.     insn        insn        insn2
  1121.       L1:          L1:          L1:
  1122.     insn2        insn2        insn2
  1123.     insn3        insn3          L1':
  1124.                     insn3
  1125.  
  1126.    2.  When a conditional branch skips over only one instruction,
  1127.        and after that, it unconditionally branches somewhere else,
  1128.        perform the similar optimization. This saves executing the
  1129.        second branch in the case where the inverted condition is true.
  1130.  
  1131.     Bcc.n L1    Bcc',a L2
  1132.     insn        insn
  1133.       L1:          L1:
  1134.     Bra L2        Bra L2
  1135.  
  1136.    INSN is a JUMP_INSN.
  1137.  
  1138.    This should be expanded to skip over N insns, where N is the number
  1139.    of delay slots required.  */
  1140.  
  1141. static rtx
  1142. optimize_skip (insn)
  1143.      register rtx insn;
  1144. {
  1145.   register rtx trial = next_nonnote_insn (insn);
  1146.   rtx next_trial = next_active_insn (trial);
  1147.   rtx delay_list = 0;
  1148.   rtx target_label;
  1149.   int flags;
  1150.  
  1151.   flags = get_jump_flags (insn, JUMP_LABEL (insn));
  1152.  
  1153.   if (trial == 0
  1154.       || GET_CODE (trial) != INSN
  1155.       || GET_CODE (PATTERN (trial)) == SEQUENCE
  1156.       || recog_memoized (trial) < 0
  1157.       || (! eligible_for_annul_false (insn, 0, trial, flags)
  1158.       && ! eligible_for_annul_true (insn, 0, trial, flags)))
  1159.     return 0;
  1160.  
  1161.   /* There are two cases where we are just executing one insn (we assume
  1162.      here that a branch requires only one insn; this should be generalized
  1163.      at some point):  Where the branch goes around a single insn or where
  1164.      we have one insn followed by a branch to the same label we branch to.
  1165.      In both of these cases, inverting the jump and annulling the delay
  1166.      slot give the same effect in fewer insns.  */
  1167.   if ((next_trial == next_active_insn (JUMP_LABEL (insn)))
  1168.       || (next_trial != 0
  1169.       && GET_CODE (next_trial) == JUMP_INSN
  1170.       && JUMP_LABEL (insn) == JUMP_LABEL (next_trial)
  1171.       && (simplejump_p (next_trial)
  1172.           || GET_CODE (PATTERN (next_trial)) == RETURN)))
  1173.     {
  1174.       if (eligible_for_annul_false (insn, 0, trial, flags))
  1175.     {
  1176.       if (invert_jump (insn, JUMP_LABEL (insn)))
  1177.         INSN_FROM_TARGET_P (trial) = 1;
  1178.       else if (! eligible_for_annul_true (insn, 0, trial, flags))
  1179.         return 0;
  1180.     }
  1181.  
  1182.       delay_list = add_to_delay_list (trial, NULL_RTX);
  1183.       next_trial = next_active_insn (trial);
  1184.       update_block (trial, trial);
  1185.       delete_insn (trial);
  1186.  
  1187.       /* Also, if we are targeting an unconditional
  1188.      branch, thread our jump to the target of that branch.  Don't
  1189.      change this into a RETURN here, because it may not accept what
  1190.      we have in the delay slot.  We'll fix this up later.  */
  1191.       if (next_trial && GET_CODE (next_trial) == JUMP_INSN
  1192.       && (simplejump_p (next_trial)
  1193.           || GET_CODE (PATTERN (next_trial)) == RETURN))
  1194.     {
  1195.       target_label = JUMP_LABEL (next_trial);
  1196.       if (target_label == 0)
  1197.         target_label = find_end_label ();
  1198.  
  1199.       /* Recompute the flags based on TARGET_LABEL since threading
  1200.          the jump to TARGET_LABEL may change the direction of the
  1201.          jump (which may change the circumstances in which the
  1202.          delay slot is nullified).  */
  1203.       flags = get_jump_flags (insn, target_label);
  1204.       if (eligible_for_annul_true (insn, 0, trial, flags))
  1205.         reorg_redirect_jump (insn, target_label);
  1206.     }
  1207.  
  1208.       INSN_ANNULLED_BRANCH_P (insn) = 1;
  1209.     }
  1210.  
  1211.   return delay_list;
  1212. }
  1213. #endif
  1214.  
  1215.  
  1216. /*  Encode and return branch direction and prediction information for
  1217.     INSN assuming it will jump to LABEL.
  1218.  
  1219.     Non conditional branches return no direction information and
  1220.     are predicted as very likely taken.  */
  1221. static int
  1222. get_jump_flags (insn, label)
  1223.      rtx insn, label;
  1224. {
  1225.   int flags;
  1226.  
  1227.   /* get_jump_flags can be passed any insn with delay slots, these may
  1228.      be INSNs, CALL_INSNs, or JUMP_INSNs.  Only JUMP_INSNs have branch
  1229.      direction information, and only if they are conditional jumps.
  1230.  
  1231.      If LABEL is zero, then there is no way to determine the branch
  1232.      direction.  */
  1233.   if (GET_CODE (insn) == JUMP_INSN
  1234.       && (condjump_p (insn) || condjump_in_parallel_p (insn))
  1235.       && INSN_UID (insn) <= max_uid
  1236.       && label != 0
  1237.       && INSN_UID (label) <= max_uid)
  1238.     flags 
  1239.       = (uid_to_ruid[INSN_UID (label)] > uid_to_ruid[INSN_UID (insn)])
  1240.      ? ATTR_FLAG_forward : ATTR_FLAG_backward;
  1241.   /* No valid direction information.  */
  1242.   else
  1243.     flags = 0;
  1244.   
  1245.   /* If insn is a conditional branch call mostly_true_jump to get
  1246.      determine the branch prediction.  
  1247.  
  1248.      Non conditional branches are predicted as very likely taken.  */
  1249.   if (GET_CODE (insn) == JUMP_INSN
  1250.       && (condjump_p (insn) || condjump_in_parallel_p (insn)))
  1251.     {
  1252.       int prediction;
  1253.  
  1254.       prediction = mostly_true_jump (insn, get_branch_condition (insn, label));
  1255.       switch (prediction)
  1256.     {
  1257.       case 2:
  1258.         flags |= (ATTR_FLAG_very_likely | ATTR_FLAG_likely);
  1259.         break;
  1260.       case 1:
  1261.         flags |= ATTR_FLAG_likely;
  1262.         break;
  1263.       case 0:
  1264.         flags |= ATTR_FLAG_unlikely;
  1265.         break;
  1266.       case -1:
  1267.         flags |= (ATTR_FLAG_very_unlikely | ATTR_FLAG_unlikely);
  1268.         break;
  1269.  
  1270.       default:
  1271.         abort();
  1272.     }
  1273.     }
  1274.   else
  1275.     flags |= (ATTR_FLAG_very_likely | ATTR_FLAG_likely);
  1276.  
  1277.   return flags;
  1278. }
  1279.  
  1280. /* Return 1 if INSN is a destination that will be branched to rarely (the
  1281.    return point of a function); return 2 if DEST will be branched to very
  1282.    rarely (a call to a function that doesn't return).  Otherwise,
  1283.    return 0.  */
  1284.  
  1285. static int
  1286. rare_destination (insn)
  1287.      rtx insn;
  1288. {
  1289.   int jump_count = 0;
  1290.   rtx next;
  1291.  
  1292.   for (; insn; insn = next)
  1293.     {
  1294.       if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
  1295.     insn = XVECEXP (PATTERN (insn), 0, 0);
  1296.  
  1297.       next = NEXT_INSN (insn);
  1298.  
  1299.       switch (GET_CODE (insn))
  1300.     {
  1301.     case CODE_LABEL:
  1302.       return 0;
  1303.     case BARRIER:
  1304.       /* A BARRIER can either be after a JUMP_INSN or a CALL_INSN.  We 
  1305.          don't scan past JUMP_INSNs, so any barrier we find here must
  1306.          have been after a CALL_INSN and hence mean the call doesn't
  1307.          return.  */
  1308.       return 2;
  1309.     case JUMP_INSN:
  1310.       if (GET_CODE (PATTERN (insn)) == RETURN)
  1311.         return 1;
  1312.       else if (simplejump_p (insn)
  1313.            && jump_count++ < 10)
  1314.         next = JUMP_LABEL (insn);
  1315.       else
  1316.         return 0;
  1317.     }
  1318.     }
  1319.  
  1320.   /* If we got here it means we hit the end of the function.  So this
  1321.      is an unlikely destination.  */
  1322.  
  1323.   return 1;
  1324. }
  1325.  
  1326. /* Return truth value of the statement that this branch
  1327.    is mostly taken.  If we think that the branch is extremely likely
  1328.    to be taken, we return 2.  If the branch is slightly more likely to be
  1329.    taken, return 1.  If the branch is slightly less likely to be taken,
  1330.    return 0 and if the branch is highly unlikely to be taken, return -1.
  1331.  
  1332.    CONDITION, if non-zero, is the condition that JUMP_INSN is testing.  */
  1333.  
  1334. static int
  1335. mostly_true_jump (jump_insn, condition)
  1336.      rtx jump_insn, condition;
  1337. {
  1338.   rtx target_label = JUMP_LABEL (jump_insn);
  1339.   rtx insn;
  1340.   int rare_dest = rare_destination (target_label);
  1341.   int rare_fallthrough = rare_destination (NEXT_INSN (jump_insn));
  1342.  
  1343.   /* If this is a branch outside a loop, it is highly unlikely.  */
  1344.   if (GET_CODE (PATTERN (jump_insn)) == SET
  1345.       && GET_CODE (SET_SRC (PATTERN (jump_insn))) == IF_THEN_ELSE
  1346.       && ((GET_CODE (XEXP (SET_SRC (PATTERN (jump_insn)), 1)) == LABEL_REF
  1347.        && LABEL_OUTSIDE_LOOP_P (XEXP (SET_SRC (PATTERN (jump_insn)), 1)))
  1348.       || (GET_CODE (XEXP (SET_SRC (PATTERN (jump_insn)), 2)) == LABEL_REF
  1349.           && LABEL_OUTSIDE_LOOP_P (XEXP (SET_SRC (PATTERN (jump_insn)), 2)))))
  1350.     return -1;
  1351.  
  1352.   if (target_label)
  1353.     {
  1354.       /* If this is the test of a loop, it is very likely true.  We scan
  1355.      backwards from the target label.  If we find a NOTE_INSN_LOOP_BEG
  1356.      before the next real insn, we assume the branch is to the top of 
  1357.      the loop.  */
  1358.       for (insn = PREV_INSN (target_label);
  1359.        insn && GET_CODE (insn) == NOTE;
  1360.        insn = PREV_INSN (insn))
  1361.     if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
  1362.       return 2;
  1363.  
  1364.       /* If this is a jump to the test of a loop, it is likely true.  We scan
  1365.      forwards from the target label.  If we find a NOTE_INSN_LOOP_VTOP
  1366.      before the next real insn, we assume the branch is to the loop branch
  1367.      test.  */
  1368.       for (insn = NEXT_INSN (target_label);
  1369.        insn && GET_CODE (insn) == NOTE;
  1370.        insn = PREV_INSN (insn))
  1371.     if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_VTOP)
  1372.       return 1;
  1373.     }
  1374.  
  1375.   /* Look at the relative rarities of the fallthough and destination.  If
  1376.      they differ, we can predict the branch that way. */
  1377.  
  1378.   switch (rare_fallthrough - rare_dest)
  1379.     {
  1380.     case -2:
  1381.       return -1;
  1382.     case -1:
  1383.       return 0;
  1384.     case 0:
  1385.       break;
  1386.     case 1:
  1387.       return 1;
  1388.     case 2:
  1389.       return 2;
  1390.     }
  1391.  
  1392.   /* If we couldn't figure out what this jump was, assume it won't be 
  1393.      taken.  This should be rare.  */
  1394.   if (condition == 0)
  1395.     return 0;
  1396.  
  1397.   /* EQ tests are usually false and NE tests are usually true.  Also,
  1398.      most quantities are positive, so we can make the appropriate guesses
  1399.      about signed comparisons against zero.  */
  1400.   switch (GET_CODE (condition))
  1401.     {
  1402.     case CONST_INT:
  1403.       /* Unconditional branch.  */
  1404.       return 1;
  1405.     case EQ:
  1406.       return 0;
  1407.     case NE:
  1408.       return 1;
  1409.     case LE:
  1410.     case LT:
  1411.       if (XEXP (condition, 1) == const0_rtx)
  1412.         return 0;
  1413.       break;
  1414.     case GE:
  1415.     case GT:
  1416.       if (XEXP (condition, 1) == const0_rtx)
  1417.     return 1;
  1418.       break;
  1419.     }
  1420.  
  1421.   /* Predict backward branches usually take, forward branches usually not.  If
  1422.      we don't know whether this is forward or backward, assume the branch
  1423.      will be taken, since most are.  */
  1424.   return (target_label == 0 || INSN_UID (jump_insn) > max_uid
  1425.       || INSN_UID (target_label) > max_uid
  1426.       || (uid_to_ruid[INSN_UID (jump_insn)]
  1427.           > uid_to_ruid[INSN_UID (target_label)]));;
  1428. }
  1429.  
  1430. /* Return the condition under which INSN will branch to TARGET.  If TARGET
  1431.    is zero, return the condition under which INSN will return.  If INSN is
  1432.    an unconditional branch, return const_true_rtx.  If INSN isn't a simple
  1433.    type of jump, or it doesn't go to TARGET, return 0.  */
  1434.  
  1435. static rtx
  1436. get_branch_condition (insn, target)
  1437.      rtx insn;
  1438.      rtx target;
  1439. {
  1440.   rtx pat = PATTERN (insn);
  1441.   rtx src;
  1442.   
  1443.   if (condjump_in_parallel_p (insn))
  1444.     pat = XVECEXP (pat, 0, 0);
  1445.  
  1446.   if (GET_CODE (pat) == RETURN)
  1447.     return target == 0 ? const_true_rtx : 0;
  1448.  
  1449.   else if (GET_CODE (pat) != SET || SET_DEST (pat) != pc_rtx)
  1450.     return 0;
  1451.  
  1452.   src = SET_SRC (pat);
  1453.   if (GET_CODE (src) == LABEL_REF && XEXP (src, 0) == target)
  1454.     return const_true_rtx;
  1455.  
  1456.   else if (GET_CODE (src) == IF_THEN_ELSE
  1457.        && ((target == 0 && GET_CODE (XEXP (src, 1)) == RETURN)
  1458.            || (GET_CODE (XEXP (src, 1)) == LABEL_REF
  1459.            && XEXP (XEXP (src, 1), 0) == target))
  1460.        && XEXP (src, 2) == pc_rtx)
  1461.     return XEXP (src, 0);
  1462.  
  1463.   else if (GET_CODE (src) == IF_THEN_ELSE
  1464.        && ((target == 0 && GET_CODE (XEXP (src, 2)) == RETURN)
  1465.            || (GET_CODE (XEXP (src, 2)) == LABEL_REF
  1466.            && XEXP (XEXP (src, 2), 0) == target))
  1467.        && XEXP (src, 1) == pc_rtx)
  1468.     return gen_rtx (reverse_condition (GET_CODE (XEXP (src, 0))),
  1469.             GET_MODE (XEXP (src, 0)),
  1470.             XEXP (XEXP (src, 0), 0), XEXP (XEXP (src, 0), 1));
  1471.  
  1472.   return 0;
  1473. }
  1474.  
  1475. /* Return non-zero if CONDITION is more strict than the condition of
  1476.    INSN, i.e., if INSN will always branch if CONDITION is true.  */
  1477.  
  1478. static int
  1479. condition_dominates_p (condition, insn)
  1480.      rtx condition;
  1481.      rtx insn;
  1482. {
  1483.   rtx other_condition = get_branch_condition (insn, JUMP_LABEL (insn));
  1484.   enum rtx_code code = GET_CODE (condition);
  1485.   enum rtx_code other_code;
  1486.  
  1487.   if (rtx_equal_p (condition, other_condition)
  1488.       || other_condition == const_true_rtx)
  1489.     return 1;
  1490.  
  1491.   else if (condition == const_true_rtx || other_condition == 0)
  1492.     return 0;
  1493.  
  1494.   other_code = GET_CODE (other_condition);
  1495.   if (GET_RTX_LENGTH (code) != 2 || GET_RTX_LENGTH (other_code) != 2
  1496.       || ! rtx_equal_p (XEXP (condition, 0), XEXP (other_condition, 0))
  1497.       || ! rtx_equal_p (XEXP (condition, 1), XEXP (other_condition, 1)))
  1498.     return 0;
  1499.  
  1500.   return comparison_dominates_p (code, other_code);
  1501. }
  1502.  
  1503. /* Return non-zero if redirecting JUMP to NEWLABEL does not invalidate
  1504.    any insns already in the delay slot of JUMP.  */
  1505.  
  1506. static int
  1507. redirect_with_delay_slots_safe_p (jump, newlabel, seq)
  1508.      rtx jump, newlabel, seq;
  1509. {
  1510.   int flags, slots, i;
  1511.   rtx pat = PATTERN (seq);
  1512.  
  1513.   /* Make sure all the delay slots of this jump would still
  1514.      be valid after threading the jump.  If they are still
  1515.      valid, then return non-zero.  */
  1516.  
  1517.   flags = get_jump_flags (jump, newlabel);
  1518.   for (i = 1; i < XVECLEN (pat, 0); i++)
  1519.     if (! (
  1520. #ifdef ANNUL_IFFALSE_SLOTS
  1521.        (INSN_ANNULLED_BRANCH_P (jump)
  1522.         && INSN_FROM_TARGET_P (XVECEXP (pat, 0, i)))
  1523.        ? eligible_for_annul_false (jump, i - 1,
  1524.                        XVECEXP (pat, 0, i), flags) :
  1525. #endif
  1526. #ifdef ANNUL_IFTRUE_SLOTS
  1527.        (INSN_ANNULLED_BRANCH_P (jump)
  1528.         && ! INSN_FROM_TARGET_P (XVECEXP (pat, 0, i)))
  1529.        ? eligible_for_annul_true (jump, i - 1,
  1530.                       XVECEXP (pat, 0, i), flags) :
  1531. #endif
  1532.        eligible_for_delay (jump, i -1, XVECEXP (pat, 0, i), flags)))
  1533.       break;
  1534.  
  1535.   return (i == XVECLEN (pat, 0));
  1536. }
  1537.  
  1538. /* Return non-zero if redirecting JUMP to NEWLABEL does not invalidate
  1539.    any insns we wish to place in the delay slot of JUMP.  */
  1540.  
  1541. static int
  1542. redirect_with_delay_list_safe_p (jump, newlabel, delay_list)
  1543.      rtx jump, newlabel, delay_list;
  1544. {
  1545.   int flags, i;
  1546.   rtx li;
  1547.  
  1548.   /* Make sure all the insns in DELAY_LIST would still be
  1549.      valid after threading the jump.  If they are still
  1550.      valid, then return non-zero.  */
  1551.  
  1552.   flags = get_jump_flags (jump, newlabel);
  1553.   for (li = delay_list, i = 0; li; li = XEXP (li, 1), i++)
  1554.     if (! (
  1555. #ifdef ANNUL_IFFALSE_SLOTS
  1556.        (INSN_ANNULLED_BRANCH_P (jump)
  1557.         && INSN_FROM_TARGET_P (XEXP (li, 0)))
  1558.        ? eligible_for_annul_false (jump, i, XEXP (li, 0), flags) :
  1559. #endif
  1560. #ifdef ANNUL_IFTRUE_SLOTS
  1561.        (INSN_ANNULLED_BRANCH_P (jump)
  1562.         && ! INSN_FROM_TARGET_P (XEXP (li, 0)))
  1563.        ? eligible_for_annul_true (jump, i, XEXP (li, 0), flags) :
  1564. #endif
  1565.        eligible_for_delay (jump, i, XEXP (li, 0), flags)))
  1566.       break;
  1567.  
  1568.   return (li == NULL);
  1569. }
  1570.  
  1571.  
  1572. /* INSN branches to an insn whose pattern SEQ is a SEQUENCE.  Given that
  1573.    the condition tested by INSN is CONDITION and the resources shown in
  1574.    OTHER_NEEDED are needed after INSN, see whether INSN can take all the insns
  1575.    from SEQ's delay list, in addition to whatever insns it may execute
  1576.    (in DELAY_LIST).   SETS and NEEDED are denote resources already set and
  1577.    needed while searching for delay slot insns.  Return the concatenated
  1578.    delay list if possible, otherwise, return 0.
  1579.  
  1580.    SLOTS_TO_FILL is the total number of slots required by INSN, and
  1581.    PSLOTS_FILLED points to the number filled so far (also the number of
  1582.    insns in DELAY_LIST).  It is updated with the number that have been
  1583.    filled from the SEQUENCE, if any.
  1584.  
  1585.    PANNUL_P points to a non-zero value if we already know that we need
  1586.    to annul INSN.  If this routine determines that annulling is needed,
  1587.    it may set that value non-zero.
  1588.  
  1589.    PNEW_THREAD points to a location that is to receive the place at which
  1590.    execution should continue.  */
  1591.  
  1592. static rtx
  1593. steal_delay_list_from_target (insn, condition, seq, delay_list,
  1594.                   sets, needed, other_needed,
  1595.                   slots_to_fill, pslots_filled, pannul_p,
  1596.                   pnew_thread)
  1597.      rtx insn, condition;
  1598.      rtx seq;
  1599.      rtx delay_list;
  1600.      struct resources *sets, *needed, *other_needed;
  1601.      int slots_to_fill;
  1602.      int *pslots_filled;
  1603.      int *pannul_p;
  1604.      rtx *pnew_thread;
  1605. {
  1606.   rtx temp;
  1607.   int slots_remaining = slots_to_fill - *pslots_filled;
  1608.   int total_slots_filled = *pslots_filled;
  1609.   rtx new_delay_list = 0;
  1610.   int must_annul = *pannul_p;
  1611.   int i;
  1612.  
  1613.   /* We can't do anything if there are more delay slots in SEQ than we
  1614.      can handle, or if we don't know that it will be a taken branch.
  1615.      We know that it will be a taken branch if it is either an unconditional
  1616.      branch or a conditional branch with a stricter branch condition.
  1617.  
  1618.      Also, exit if the branch has more than one set, since then it is computing
  1619.      other results that can't be ignored, e.g. the HPPA mov&branch instruction.
  1620.      ??? It may be possible to move other sets into INSN in addition to
  1621.      moving the instructions in the delay slots.  */
  1622.  
  1623.   if (XVECLEN (seq, 0) - 1 > slots_remaining
  1624.       || ! condition_dominates_p (condition, XVECEXP (seq, 0, 0))
  1625.       || ! single_set (XVECEXP (seq, 0, 0)))
  1626.     return delay_list;
  1627.  
  1628.   for (i = 1; i < XVECLEN (seq, 0); i++)
  1629.     {
  1630.       rtx trial = XVECEXP (seq, 0, i);
  1631.       int flags;
  1632.  
  1633.       if (insn_references_resource_p (trial, sets, 0)
  1634.       || insn_sets_resource_p (trial, needed, 0)
  1635.       || insn_sets_resource_p (trial, sets, 0)
  1636. #ifdef HAVE_cc0
  1637.       /* If TRIAL sets CC0, we can't copy it, so we can't steal this
  1638.          delay list.  */
  1639.       || find_reg_note (trial, REG_CC_USER, NULL_RTX)
  1640. #endif
  1641.       /* If TRIAL is from the fallthrough code of an annulled branch insn
  1642.          in SEQ, we cannot use it.  */
  1643.       || (INSN_ANNULLED_BRANCH_P (XVECEXP (seq, 0, 0))
  1644.           && ! INSN_FROM_TARGET_P (trial)))
  1645.     return delay_list;
  1646.  
  1647.       /* If this insn was already done (usually in a previous delay slot),
  1648.      pretend we put it in our delay slot.  */
  1649.       if (redundant_insn (trial, insn, new_delay_list))
  1650.     continue;
  1651.  
  1652.       /* We will end up re-vectoring this branch, so compute flags
  1653.      based on jumping to the new label.  */
  1654.       flags = get_jump_flags (insn, JUMP_LABEL (XVECEXP (seq, 0, 0)));
  1655.  
  1656.       if (! must_annul
  1657.       && ((condition == const_true_rtx
  1658.            || (! insn_sets_resource_p (trial, other_needed, 0)
  1659.            && ! may_trap_p (PATTERN (trial)))))
  1660.       ? eligible_for_delay (insn, total_slots_filled, trial, flags)
  1661.       : (must_annul = 1,
  1662.          eligible_for_annul_false (insn, total_slots_filled, trial, flags)))
  1663.     {
  1664.       temp = copy_rtx (trial);
  1665.       INSN_FROM_TARGET_P (temp) = 1;
  1666.       new_delay_list = add_to_delay_list (temp, new_delay_list);
  1667.       total_slots_filled++;
  1668.  
  1669.       if (--slots_remaining == 0)
  1670.         break;
  1671.     }
  1672.       else
  1673.     return delay_list;
  1674.     }
  1675.  
  1676.   /* Show the place to which we will be branching.  */
  1677.   *pnew_thread = next_active_insn (JUMP_LABEL (XVECEXP (seq, 0, 0)));
  1678.  
  1679.   /* Add any new insns to the delay list and update the count of the
  1680.      number of slots filled.  */
  1681.   *pslots_filled = total_slots_filled;
  1682.   *pannul_p = must_annul;
  1683.  
  1684.   if (delay_list == 0)
  1685.     return new_delay_list;
  1686.  
  1687.   for (temp = new_delay_list; temp; temp = XEXP (temp, 1))
  1688.     delay_list = add_to_delay_list (XEXP (temp, 0), delay_list);
  1689.  
  1690.   return delay_list;
  1691. }
  1692.  
  1693. /* Similar to steal_delay_list_from_target except that SEQ is on the 
  1694.    fallthrough path of INSN.  Here we only do something if the delay insn
  1695.    of SEQ is an unconditional branch.  In that case we steal its delay slot
  1696.    for INSN since unconditional branches are much easier to fill.  */
  1697.  
  1698. static rtx
  1699. steal_delay_list_from_fallthrough (insn, condition, seq, 
  1700.                    delay_list, sets, needed, other_needed,
  1701.                    slots_to_fill, pslots_filled, pannul_p)
  1702.      rtx insn, condition;
  1703.      rtx seq;
  1704.      rtx delay_list;
  1705.      struct resources *sets, *needed, *other_needed;
  1706.      int slots_to_fill;
  1707.      int *pslots_filled;
  1708.      int *pannul_p;
  1709. {
  1710.   int i;
  1711.   int flags;
  1712.  
  1713.   flags = get_jump_flags (insn, JUMP_LABEL (insn));
  1714.  
  1715.   /* We can't do anything if SEQ's delay insn isn't an
  1716.      unconditional branch.  */
  1717.  
  1718.   if (! simplejump_p (XVECEXP (seq, 0, 0))
  1719.       && GET_CODE (PATTERN (XVECEXP (seq, 0, 0))) != RETURN)
  1720.     return delay_list;
  1721.  
  1722.   for (i = 1; i < XVECLEN (seq, 0); i++)
  1723.     {
  1724.       rtx trial = XVECEXP (seq, 0, i);
  1725.  
  1726.       /* If TRIAL sets CC0, stealing it will move it too far from the use
  1727.      of CC0.  */
  1728.       if (insn_references_resource_p (trial, sets, 0)
  1729.       || insn_sets_resource_p (trial, needed, 0)
  1730.       || insn_sets_resource_p (trial, sets, 0)
  1731. #ifdef HAVE_cc0
  1732.       || sets_cc0_p (PATTERN (trial))
  1733. #endif
  1734.       )
  1735.  
  1736.     break;
  1737.  
  1738.       /* If this insn was already done, we don't need it.  */
  1739.       if (redundant_insn (trial, insn, delay_list))
  1740.     {
  1741.       delete_from_delay_slot (trial);
  1742.       continue;
  1743.     }
  1744.  
  1745.       if (! *pannul_p
  1746.       && ((condition == const_true_rtx
  1747.            || (! insn_sets_resource_p (trial, other_needed, 0)
  1748.            && ! may_trap_p (PATTERN (trial)))))
  1749.       ? eligible_for_delay (insn, *pslots_filled, trial, flags)
  1750.       : (*pannul_p = 1,
  1751.          eligible_for_annul_true (insn, *pslots_filled, trial, flags)))
  1752.     {
  1753.       delete_from_delay_slot (trial);
  1754.       delay_list = add_to_delay_list (trial, delay_list);
  1755.  
  1756.       if (++(*pslots_filled) == slots_to_fill)
  1757.         break;
  1758.     }
  1759.       else
  1760.     break;
  1761.     }
  1762.  
  1763.   return delay_list;
  1764. }
  1765.  
  1766. /* Try merging insns starting at THREAD which match exactly the insns in
  1767.    INSN's delay list.
  1768.  
  1769.    If all insns were matched and the insn was previously annulling, the
  1770.    annul bit will be cleared.
  1771.  
  1772.    For each insn that is merged, if the branch is or will be non-annulling,
  1773.    we delete the merged insn.  */
  1774.  
  1775. static void
  1776. try_merge_delay_insns (insn, thread)
  1777.      rtx insn, thread;
  1778. {
  1779.   rtx trial, next_trial;
  1780.   rtx delay_insn = XVECEXP (PATTERN (insn), 0, 0);
  1781.   int annul_p = INSN_ANNULLED_BRANCH_P (delay_insn);
  1782.   int slot_number = 1;
  1783.   int num_slots = XVECLEN (PATTERN (insn), 0);
  1784.   rtx next_to_match = XVECEXP (PATTERN (insn), 0, slot_number);
  1785.   struct resources set, needed;
  1786.   rtx merged_insns = 0;
  1787.   int i;
  1788.   int flags;
  1789.  
  1790.   flags = get_jump_flags (delay_insn, JUMP_LABEL (delay_insn));
  1791.  
  1792.   CLEAR_RESOURCE (&needed);
  1793.   CLEAR_RESOURCE (&set);
  1794.  
  1795.   /* If this is not an annulling branch, take into account anything needed in
  1796.      NEXT_TO_MATCH.  This prevents two increments from being incorrectly
  1797.      folded into one.  If we are annulling, this would be the correct
  1798.      thing to do.  (The alternative, looking at things set in NEXT_TO_MATCH
  1799.      will essentially disable this optimization.  This method is somewhat of
  1800.      a kludge, but I don't see a better way.)  */
  1801.   if (! annul_p)
  1802.     mark_referenced_resources (next_to_match, &needed, 1);
  1803.  
  1804.   for (trial = thread; !stop_search_p (trial, 1); trial = next_trial)
  1805.     {
  1806.       rtx pat = PATTERN (trial);
  1807.       rtx oldtrial = trial;
  1808.  
  1809.       next_trial = next_nonnote_insn (trial);
  1810.  
  1811.       /* TRIAL must be a CALL_INSN or INSN.  Skip USE and CLOBBER.  */
  1812.       if (GET_CODE (trial) == INSN
  1813.       && (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER))
  1814.     continue;
  1815.  
  1816.       if (GET_CODE (next_to_match) == GET_CODE (trial)
  1817. #ifdef HAVE_cc0
  1818.       /* We can't share an insn that sets cc0.  */
  1819.       && ! sets_cc0_p (pat)
  1820. #endif
  1821.       && ! insn_references_resource_p (trial, &set, 1)
  1822.       && ! insn_sets_resource_p (trial, &set, 1)
  1823.       && ! insn_sets_resource_p (trial, &needed, 1)
  1824.       && (trial = try_split (pat, trial, 0)) != 0
  1825.       /* Update next_trial, in case try_split succeeded.  */
  1826.       && (next_trial = next_nonnote_insn (trial))
  1827.       /* Likewise THREAD.  */
  1828.       && (thread = oldtrial == thread ? trial : thread)
  1829.       && rtx_equal_p (PATTERN (next_to_match), PATTERN (trial))
  1830.       /* Have to test this condition if annul condition is different
  1831.          from (and less restrictive than) non-annulling one.  */
  1832.       && eligible_for_delay (delay_insn, slot_number - 1, trial, flags))
  1833.     {
  1834.  
  1835.       if (! annul_p)
  1836.         {
  1837.           update_block (trial, thread);
  1838.           if (trial == thread)
  1839.         thread = next_active_insn (thread);
  1840.  
  1841.           delete_insn (trial);
  1842.           INSN_FROM_TARGET_P (next_to_match) = 0;
  1843.         }
  1844.       else
  1845.         merged_insns = gen_rtx (INSN_LIST, VOIDmode, trial, merged_insns);
  1846.  
  1847.       if (++slot_number == num_slots)
  1848.         break;
  1849.  
  1850.       next_to_match = XVECEXP (PATTERN (insn), 0, slot_number);
  1851.       if (! annul_p)
  1852.         mark_referenced_resources (next_to_match, &needed, 1);
  1853.     }
  1854.  
  1855.       mark_set_resources (trial, &set, 0, 1);
  1856.       mark_referenced_resources (trial, &needed, 1);
  1857.     }
  1858.  
  1859.   /* See if we stopped on a filled insn.  If we did, try to see if its
  1860.      delay slots match.  */
  1861.   if (slot_number != num_slots
  1862.       && trial && GET_CODE (trial) == INSN
  1863.       && GET_CODE (PATTERN (trial)) == SEQUENCE
  1864.       && ! INSN_ANNULLED_BRANCH_P (XVECEXP (PATTERN (trial), 0, 0)))
  1865.     {
  1866.       rtx pat = PATTERN (trial);
  1867.       rtx filled_insn = XVECEXP (pat, 0, 0);
  1868.  
  1869.       /* Account for resources set/needed by the filled insn.  */
  1870.       mark_set_resources (filled_insn, &set, 0, 1);
  1871.       mark_referenced_resources (filled_insn, &needed, 1);
  1872.  
  1873.       for (i = 1; i < XVECLEN (pat, 0); i++)
  1874.     {
  1875.       rtx dtrial = XVECEXP (pat, 0, i);
  1876.  
  1877.       if (! insn_references_resource_p (dtrial, &set, 1)
  1878.           && ! insn_sets_resource_p (dtrial, &set, 1)
  1879.           && ! insn_sets_resource_p (dtrial, &needed, 1)
  1880. #ifdef HAVE_cc0
  1881.           && ! sets_cc0_p (PATTERN (dtrial))
  1882. #endif
  1883.           && rtx_equal_p (PATTERN (next_to_match), PATTERN (dtrial))
  1884.           && eligible_for_delay (delay_insn, slot_number - 1, dtrial, flags))
  1885.         {
  1886.           if (! annul_p)
  1887.         {
  1888.           update_block (dtrial, thread);
  1889.           delete_from_delay_slot (dtrial);
  1890.           INSN_FROM_TARGET_P (next_to_match) = 0;
  1891.         }
  1892.           else
  1893.         merged_insns = gen_rtx (INSN_LIST, SImode, dtrial,
  1894.                     merged_insns);
  1895.  
  1896.           if (++slot_number == num_slots)
  1897.         break;
  1898.  
  1899.           next_to_match = XVECEXP (PATTERN (insn), 0, slot_number);
  1900.         }
  1901.     }
  1902.     }
  1903.  
  1904.   /* If all insns in the delay slot have been matched and we were previously
  1905.      annulling the branch, we need not any more.  In that case delete all the
  1906.      merged insns.  Also clear the INSN_FROM_TARGET_P bit of each insn the
  1907.      the delay list so that we know that it isn't only being used at the
  1908.      target.  */
  1909.   if (slot_number == num_slots && annul_p)
  1910.     {
  1911.       for (; merged_insns; merged_insns = XEXP (merged_insns, 1))
  1912.     {
  1913.       if (GET_MODE (merged_insns) == SImode)
  1914.         {
  1915.           update_block (XEXP (merged_insns, 0), thread);
  1916.           delete_from_delay_slot (XEXP (merged_insns, 0));
  1917.         }
  1918.       else
  1919.         {
  1920.           update_block (XEXP (merged_insns, 0), thread);
  1921.           delete_insn (XEXP (merged_insns, 0));
  1922.         }
  1923.     }
  1924.  
  1925.       INSN_ANNULLED_BRANCH_P (delay_insn) = 0;
  1926.  
  1927.       for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
  1928.     INSN_FROM_TARGET_P (XVECEXP (PATTERN (insn), 0, i)) = 0;
  1929.     }
  1930. }
  1931.  
  1932. /* See if INSN is redundant with an insn in front of TARGET.  Often this
  1933.    is called when INSN is a candidate for a delay slot of TARGET.
  1934.    DELAY_LIST are insns that will be placed in delay slots of TARGET in front
  1935.    of INSN.  Often INSN will be redundant with an insn in a delay slot of
  1936.    some previous insn.  This happens when we have a series of branches to the
  1937.    same label; in that case the first insn at the target might want to go
  1938.    into each of the delay slots.
  1939.  
  1940.    If we are not careful, this routine can take up a significant fraction
  1941.    of the total compilation time (4%), but only wins rarely.  Hence we
  1942.    speed this routine up by making two passes.  The first pass goes back
  1943.    until it hits a label and sees if it find an insn with an identical
  1944.    pattern.  Only in this (relatively rare) event does it check for
  1945.    data conflicts.
  1946.  
  1947.    We do not split insns we encounter.  This could cause us not to find a
  1948.    redundant insn, but the cost of splitting seems greater than the possible
  1949.    gain in rare cases.  */
  1950.  
  1951. static rtx
  1952. redundant_insn (insn, target, delay_list)
  1953.      rtx insn;
  1954.      rtx target;
  1955.      rtx delay_list;
  1956. {
  1957.   rtx target_main = target;
  1958.   rtx ipat = PATTERN (insn);
  1959.   rtx trial, pat;
  1960.   struct resources needed, set;
  1961.   int i;
  1962.  
  1963.   /* Scan backwards looking for a match.  */
  1964.   for (trial = PREV_INSN (target); trial; trial = PREV_INSN (trial))
  1965.     {
  1966.       if (GET_CODE (trial) == CODE_LABEL)
  1967.     return 0;
  1968.  
  1969.       if (GET_RTX_CLASS (GET_CODE (trial)) != 'i')
  1970.     continue;
  1971.  
  1972.       pat = PATTERN (trial);
  1973.       if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
  1974.     continue;
  1975.  
  1976.       if (GET_CODE (pat) == SEQUENCE)
  1977.     {
  1978.       /* Stop for a CALL and its delay slots because it is difficult to
  1979.          track its resource needs correctly.  */
  1980.       if (GET_CODE (XVECEXP (pat, 0, 0)) == CALL_INSN)
  1981.         return 0;
  1982.  
  1983.       /* Stop for an INSN or JUMP_INSN with delayed effects and its delay
  1984.          slots because it is difficult to track its resource needs 
  1985.          correctly.  */
  1986.  
  1987. #ifdef INSN_SETS_ARE_DELAYED
  1988.       if (INSN_SETS_ARE_DELAYED (XVECEXP (pat, 0, 0)))
  1989.         return 0; 
  1990. #endif
  1991.  
  1992. #ifdef INSN_REFERENCES_ARE_DELAYED
  1993.       if (INSN_REFERENCES_ARE_DELAYED (XVECEXP (pat, 0, 0)))
  1994.         return 0; 
  1995. #endif
  1996.  
  1997.       /* See if any of the insns in the delay slot match, updating
  1998.          resource requirements as we go.  */
  1999.       for (i = XVECLEN (pat, 0) - 1; i > 0; i--)
  2000.         if (GET_CODE (XVECEXP (pat, 0, i)) == GET_CODE (insn)
  2001.         && rtx_equal_p (PATTERN (XVECEXP (pat, 0, i)), ipat))
  2002.           break;
  2003.  
  2004.       /* If found a match, exit this loop early.  */
  2005.       if (i > 0)
  2006.         break;
  2007.     }
  2008.  
  2009.       else if (GET_CODE (trial) == GET_CODE (insn) && rtx_equal_p (pat, ipat))
  2010.     break;
  2011.     }
  2012.  
  2013.   /* If we didn't find an insn that matches, return 0.  */
  2014.   if (trial == 0)
  2015.     return 0;
  2016.  
  2017.   /* See what resources this insn sets and needs.  If they overlap, or
  2018.      if this insn references CC0, it can't be redundant.  */
  2019.  
  2020.   CLEAR_RESOURCE (&needed);
  2021.   CLEAR_RESOURCE (&set);
  2022.   mark_set_resources (insn, &set, 0, 1);
  2023.   mark_referenced_resources (insn, &needed, 1);
  2024.  
  2025.   /* If TARGET is a SEQUENCE, get the main insn.  */
  2026.   if (GET_CODE (target) == INSN && GET_CODE (PATTERN (target)) == SEQUENCE)
  2027.     target_main = XVECEXP (PATTERN (target), 0, 0);
  2028.  
  2029.   if (resource_conflicts_p (&needed, &set)
  2030. #ifdef HAVE_cc0
  2031.       || reg_mentioned_p (cc0_rtx, ipat)
  2032. #endif
  2033.       /* The insn requiring the delay may not set anything needed or set by
  2034.      INSN.  */
  2035.       || insn_sets_resource_p (target_main, &needed, 1)
  2036.       || insn_sets_resource_p (target_main, &set, 1))
  2037.     return 0;
  2038.  
  2039.   /* Insns we pass may not set either NEEDED or SET, so merge them for
  2040.      simpler tests.  */
  2041.   needed.memory |= set.memory;
  2042.   needed.unch_memory |= set.unch_memory;
  2043.   IOR_HARD_REG_SET (needed.regs, set.regs);
  2044.  
  2045.   /* This insn isn't redundant if it conflicts with an insn that either is
  2046.      or will be in a delay slot of TARGET.  */
  2047.  
  2048.   while (delay_list)
  2049.     {
  2050.       if (insn_sets_resource_p (XEXP (delay_list, 0), &needed, 1))
  2051.     return 0;
  2052.       delay_list = XEXP (delay_list, 1);
  2053.     }
  2054.  
  2055.   if (GET_CODE (target) == INSN && GET_CODE (PATTERN (target)) == SEQUENCE)
  2056.     for (i = 1; i < XVECLEN (PATTERN (target), 0); i++)
  2057.       if (insn_sets_resource_p (XVECEXP (PATTERN (target), 0, i), &needed, 1))
  2058.     return 0;
  2059.  
  2060.   /* Scan backwards until we reach a label or an insn that uses something
  2061.      INSN sets or sets something insn uses or sets.  */
  2062.  
  2063.   for (trial = PREV_INSN (target);
  2064.        trial && GET_CODE (trial) != CODE_LABEL;
  2065.        trial = PREV_INSN (trial))
  2066.     {
  2067.       if (GET_CODE (trial) != INSN && GET_CODE (trial) != CALL_INSN
  2068.       && GET_CODE (trial) != JUMP_INSN)
  2069.     continue;
  2070.  
  2071.       pat = PATTERN (trial);
  2072.       if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
  2073.     continue;
  2074.  
  2075.       if (GET_CODE (pat) == SEQUENCE)
  2076.     {
  2077.       /* If this is a CALL_INSN and its delay slots, it is hard to track
  2078.          the resource needs properly, so give up.  */
  2079.       if (GET_CODE (XVECEXP (pat, 0, 0)) == CALL_INSN)
  2080.         return 0;
  2081.  
  2082.       /* If this this is an INSN or JUMP_INSN with delayed effects, it
  2083.          is hard to track the resource needs properly, so give up.  */
  2084.  
  2085. #ifdef INSN_SETS_ARE_DELAYED
  2086.       if (INSN_SETS_ARE_DELAYED (XVECEXP (pat, 0, 0)))
  2087.         return 0; 
  2088. #endif
  2089.  
  2090. #ifdef INSN_REFERENCES_ARE_DELAYED
  2091.       if (INSN_REFERENCES_ARE_DELAYED (XVECEXP (pat, 0, 0)))
  2092.         return 0; 
  2093. #endif
  2094.  
  2095.       /* See if any of the insns in the delay slot match, updating
  2096.          resource requirements as we go.  */
  2097.       for (i = XVECLEN (pat, 0) - 1; i > 0; i--)
  2098.         {
  2099.           rtx candidate = XVECEXP (pat, 0, i);
  2100.  
  2101.           /* If an insn will be annulled if the branch is false, it isn't
  2102.          considered as a possible duplicate insn.  */
  2103.           if (rtx_equal_p (PATTERN (candidate), ipat)
  2104.           && ! (INSN_ANNULLED_BRANCH_P (XVECEXP (pat, 0, 0))
  2105.             && INSN_FROM_TARGET_P (candidate)))
  2106.         {
  2107.           /* Show that this insn will be used in the sequel.  */
  2108.           INSN_FROM_TARGET_P (candidate) = 0;
  2109.           return candidate;
  2110.         }
  2111.  
  2112.           /* Unless this is an annulled insn from the target of a branch,
  2113.          we must stop if it sets anything needed or set by INSN.  */
  2114.           if ((! INSN_ANNULLED_BRANCH_P (XVECEXP (pat, 0, 0))
  2115.            || ! INSN_FROM_TARGET_P (candidate))
  2116.           && insn_sets_resource_p (candidate, &needed, 1))
  2117.         return 0;
  2118.         }
  2119.  
  2120.  
  2121.       /* If the insn requiring the delay slot conflicts with INSN, we 
  2122.          must stop.  */
  2123.       if (insn_sets_resource_p (XVECEXP (pat, 0, 0), &needed, 1))
  2124.         return 0;
  2125.     }
  2126.       else
  2127.     {
  2128.       /* See if TRIAL is the same as INSN.  */
  2129.       pat = PATTERN (trial);
  2130.       if (rtx_equal_p (pat, ipat))
  2131.         return trial;
  2132.  
  2133.       /* Can't go any further if TRIAL conflicts with INSN.  */
  2134.       if (insn_sets_resource_p (trial, &needed, 1))
  2135.         return 0;
  2136.     }
  2137.     }
  2138.  
  2139.   return 0;
  2140. }
  2141.  
  2142. /* Return 1 if THREAD can only be executed in one way.  If LABEL is non-zero,
  2143.    it is the target of the branch insn being scanned.  If ALLOW_FALLTHROUGH
  2144.    is non-zero, we are allowed to fall into this thread; otherwise, we are
  2145.    not.
  2146.  
  2147.    If LABEL is used more than one or we pass a label other than LABEL before
  2148.    finding an active insn, we do not own this thread.  */
  2149.  
  2150. static int
  2151. own_thread_p (thread, label, allow_fallthrough)
  2152.      rtx thread;
  2153.      rtx label;
  2154.      int allow_fallthrough;
  2155. {
  2156.   rtx active_insn;
  2157.   rtx insn;
  2158.  
  2159.   /* We don't own the function end.  */
  2160.   if (thread == 0)
  2161.     return 0;
  2162.  
  2163.   /* Get the first active insn, or THREAD, if it is an active insn.  */
  2164.   active_insn = next_active_insn (PREV_INSN (thread));
  2165.  
  2166.   for (insn = thread; insn != active_insn; insn = NEXT_INSN (insn))
  2167.     if (GET_CODE (insn) == CODE_LABEL
  2168.     && (insn != label || LABEL_NUSES (insn) != 1))
  2169.       return 0;
  2170.  
  2171.   if (allow_fallthrough)
  2172.     return 1;
  2173.  
  2174.   /* Ensure that we reach a BARRIER before any insn or label.  */
  2175.   for (insn = prev_nonnote_insn (thread);
  2176.        insn == 0 || GET_CODE (insn) != BARRIER;
  2177.        insn = prev_nonnote_insn (insn))
  2178.     if (insn == 0
  2179.     || GET_CODE (insn) == CODE_LABEL
  2180.     || (GET_CODE (insn) == INSN
  2181.         && GET_CODE (PATTERN (insn)) != USE
  2182.         && GET_CODE (PATTERN (insn)) != CLOBBER))
  2183.       return 0;
  2184.  
  2185.   return 1;
  2186. }
  2187.  
  2188. /* Find the number of the basic block that starts closest to INSN.  Return -1
  2189.    if we couldn't find such a basic block.  */
  2190.  
  2191. static int
  2192. find_basic_block (insn)
  2193.      rtx insn;
  2194. {
  2195.   int i;
  2196.  
  2197.   /* Scan backwards to the previous BARRIER.  Then see if we can find a
  2198.      label that starts a basic block.  Return the basic block number.  */
  2199.  
  2200.   for (insn = prev_nonnote_insn (insn);
  2201.        insn && GET_CODE (insn) != BARRIER;
  2202.        insn = prev_nonnote_insn (insn))
  2203.     ;
  2204.  
  2205.   /* The start of the function is basic block zero.  */
  2206.   if (insn == 0)
  2207.     return 0;
  2208.  
  2209.   /* See if any of the upcoming CODE_LABELs start a basic block.  If we reach
  2210.      anything other than a CODE_LABEL or note, we can't find this code.  */
  2211.   for (insn = next_nonnote_insn (insn);
  2212.        insn && GET_CODE (insn) == CODE_LABEL;
  2213.        insn = next_nonnote_insn (insn))
  2214.     {
  2215.       for (i = 0; i < n_basic_blocks; i++)
  2216.     if (insn == basic_block_head[i])
  2217.       return i;
  2218.     }
  2219.  
  2220.   return -1;
  2221. }
  2222.  
  2223. /* Called when INSN is being moved from a location near the target of a jump.
  2224.    We leave a marker of the form (use (INSN)) immediately in front
  2225.    of WHERE for mark_target_live_regs.  These markers will be deleted when
  2226.    reorg finishes.
  2227.  
  2228.    We used to try to update the live status of registers if WHERE is at
  2229.    the start of a basic block, but that can't work since we may remove a
  2230.    BARRIER in relax_delay_slots.  */
  2231.  
  2232. static void
  2233. update_block (insn, where)
  2234.      rtx insn;
  2235.      rtx where;
  2236. {
  2237.   int b;
  2238.  
  2239.   /* Ignore if this was in a delay slot and it came from the target of 
  2240.      a branch.  */
  2241.   if (INSN_FROM_TARGET_P (insn))
  2242.     return;
  2243.  
  2244.   emit_insn_before (gen_rtx (USE, VOIDmode, insn), where);
  2245.  
  2246.   /* INSN might be making a value live in a block where it didn't use to
  2247.      be.  So recompute liveness information for this block.  */
  2248.  
  2249.   b = find_basic_block (insn);
  2250.   if (b != -1)
  2251.     bb_ticks[b]++;
  2252. }
  2253.  
  2254. /* Similar to REDIRECT_JUMP except that we update the BB_TICKS entry for
  2255.    the basic block containing the jump.  */
  2256.  
  2257. static int
  2258. reorg_redirect_jump (jump, nlabel)
  2259.      rtx jump;
  2260.      rtx nlabel;
  2261. {
  2262.   int b = find_basic_block (jump);
  2263.  
  2264.   if (b != -1)
  2265.     bb_ticks[b]++;
  2266.  
  2267.   return redirect_jump (jump, nlabel);
  2268. }
  2269.  
  2270. /* Called when INSN is being moved forward into a delay slot of DELAYED_INSN.
  2271.    We check every instruction between INSN and DELAYED_INSN for REG_DEAD notes
  2272.    that reference values used in INSN.  If we find one, then we move the
  2273.    REG_DEAD note to INSN.
  2274.  
  2275.    This is needed to handle the case where an later insn (after INSN) has a
  2276.    REG_DEAD note for a register used by INSN, and this later insn subsequently
  2277.    gets moved before a CODE_LABEL because it is a redundant insn.  In this
  2278.    case, mark_target_live_regs may be confused into thinking the register
  2279.    is dead because it sees a REG_DEAD note immediately before a CODE_LABEL.  */
  2280.  
  2281. static void
  2282. update_reg_dead_notes (insn, delayed_insn)
  2283.      rtx insn, delayed_insn;
  2284. {
  2285.   rtx p, link, next;
  2286.  
  2287.   for (p = next_nonnote_insn (insn); p != delayed_insn;
  2288.        p = next_nonnote_insn (p))
  2289.     for (link = REG_NOTES (p); link; link = next)
  2290.       {
  2291.     next = XEXP (link, 1);
  2292.  
  2293.     if (REG_NOTE_KIND (link) != REG_DEAD
  2294.         || GET_CODE (XEXP (link, 0)) != REG)
  2295.       continue;
  2296.  
  2297.     if (reg_referenced_p (XEXP (link, 0), PATTERN (insn)))
  2298.       {
  2299.         /* Move the REG_DEAD note from P to INSN.  */
  2300.         remove_note (p, link);
  2301.         XEXP (link, 1) = REG_NOTES (insn);
  2302.         REG_NOTES (insn) = link;
  2303.       }
  2304.       }
  2305. }
  2306.  
  2307. /* Delete any REG_UNUSED notes that exist on INSN but not on REDUNDANT_INSN.
  2308.  
  2309.    This handles the case of udivmodXi4 instructions which optimize their
  2310.    output depending on whether any REG_UNUSED notes are present.
  2311.    we must make sure that INSN calculates as many results as REDUNDANT_INSN
  2312.    does.  */
  2313.  
  2314. static void
  2315. update_reg_unused_notes (insn, redundant_insn)
  2316.      rtx insn, redundant_insn;
  2317. {
  2318.   rtx p, link, next;
  2319.  
  2320.   for (link = REG_NOTES (insn); link; link = next)
  2321.     {
  2322.       next = XEXP (link, 1);
  2323.  
  2324.       if (REG_NOTE_KIND (link) != REG_UNUSED
  2325.       || GET_CODE (XEXP (link, 0)) != REG)
  2326.     continue;
  2327.  
  2328.       if (! find_regno_note (redundant_insn, REG_UNUSED,
  2329.                  REGNO (XEXP (link, 0))))
  2330.     remove_note (insn, link);
  2331.     }
  2332. }
  2333.  
  2334. /* Marks registers possibly live at the current place being scanned by
  2335.    mark_target_live_regs.  Used only by next two function.    */
  2336.  
  2337. static HARD_REG_SET current_live_regs;
  2338.  
  2339. /* Marks registers for which we have seen a REG_DEAD note but no assignment.
  2340.    Also only used by the next two functions.  */
  2341.  
  2342. static HARD_REG_SET pending_dead_regs;
  2343.  
  2344. /* Utility function called from mark_target_live_regs via note_stores.
  2345.    It deadens any CLOBBERed registers and livens any SET registers.  */
  2346.  
  2347. static void
  2348. update_live_status (dest, x)
  2349.      rtx dest;
  2350.      rtx x;
  2351. {
  2352.   int first_regno, last_regno;
  2353.   int i;
  2354.  
  2355.   if (GET_CODE (dest) != REG
  2356.       && (GET_CODE (dest) != SUBREG || GET_CODE (SUBREG_REG (dest)) != REG))
  2357.     return;
  2358.  
  2359.   if (GET_CODE (dest) == SUBREG)
  2360.     first_regno = REGNO (SUBREG_REG (dest)) + SUBREG_WORD (dest);
  2361.   else
  2362.     first_regno = REGNO (dest);
  2363.  
  2364.   last_regno = first_regno + HARD_REGNO_NREGS (first_regno, GET_MODE (dest));
  2365.  
  2366.   if (GET_CODE (x) == CLOBBER)
  2367.     for (i = first_regno; i < last_regno; i++)
  2368.       CLEAR_HARD_REG_BIT (current_live_regs, i);
  2369.   else
  2370.     for (i = first_regno; i < last_regno; i++)
  2371.       {
  2372.     SET_HARD_REG_BIT (current_live_regs, i);
  2373.     CLEAR_HARD_REG_BIT (pending_dead_regs, i);
  2374.       }
  2375. }
  2376.  
  2377. /* Similar to next_insn, but ignores insns in the delay slots of
  2378.    an annulled branch.  */
  2379.  
  2380. static rtx
  2381. next_insn_no_annul (insn)
  2382.      rtx insn;
  2383. {
  2384.   if (insn)
  2385.     {
  2386.       /* If INSN is an annulled branch, skip any insns from the target
  2387.      of the branch.  */
  2388.       if (INSN_ANNULLED_BRANCH_P (insn)
  2389.       && NEXT_INSN (PREV_INSN (insn)) != insn)
  2390.     while (INSN_FROM_TARGET_P (NEXT_INSN (insn)))
  2391.       insn = NEXT_INSN (insn);
  2392.  
  2393.       insn = NEXT_INSN (insn);
  2394.       if (insn && GET_CODE (insn) == INSN
  2395.       && GET_CODE (PATTERN (insn)) == SEQUENCE)
  2396.     insn = XVECEXP (PATTERN (insn), 0, 0);
  2397.     }
  2398.  
  2399.   return insn;
  2400. }
  2401.  
  2402. /* Set the resources that are live at TARGET.
  2403.  
  2404.    If TARGET is zero, we refer to the end of the current function and can
  2405.    return our precomputed value.
  2406.  
  2407.    Otherwise, we try to find out what is live by consulting the basic block
  2408.    information.  This is tricky, because we must consider the actions of
  2409.    reload and jump optimization, which occur after the basic block information
  2410.    has been computed.
  2411.  
  2412.    Accordingly, we proceed as follows::
  2413.  
  2414.    We find the previous BARRIER and look at all immediately following labels
  2415.    (with no intervening active insns) to see if any of them start a basic
  2416.    block.  If we hit the start of the function first, we use block 0.
  2417.  
  2418.    Once we have found a basic block and a corresponding first insns, we can
  2419.    accurately compute the live status from basic_block_live_regs and
  2420.    reg_renumber.  (By starting at a label following a BARRIER, we are immune
  2421.    to actions taken by reload and jump.)  Then we scan all insns between
  2422.    that point and our target.  For each CLOBBER (or for call-clobbered regs
  2423.    when we pass a CALL_INSN), mark the appropriate registers are dead.  For
  2424.    a SET, mark them as live.
  2425.  
  2426.    We have to be careful when using REG_DEAD notes because they are not
  2427.    updated by such things as find_equiv_reg.  So keep track of registers
  2428.    marked as dead that haven't been assigned to, and mark them dead at the
  2429.    next CODE_LABEL since reload and jump won't propagate values across labels.
  2430.  
  2431.    If we cannot find the start of a basic block (should be a very rare
  2432.    case, if it can happen at all), mark everything as potentially live.
  2433.  
  2434.    Next, scan forward from TARGET looking for things set or clobbered
  2435.    before they are used.  These are not live.
  2436.  
  2437.    Because we can be called many times on the same target, save our results
  2438.    in a hash table indexed by INSN_UID.  */
  2439.  
  2440. static void
  2441. mark_target_live_regs (target, res)
  2442.      rtx target;
  2443.      struct resources *res;
  2444. {
  2445.   int b = -1;
  2446.   int i;
  2447.   struct target_info *tinfo;
  2448.   rtx insn, next;
  2449.   rtx jump_insn = 0;
  2450.   rtx jump_target;
  2451.   HARD_REG_SET scratch;
  2452.   struct resources set, needed;
  2453.   int jump_count = 0;
  2454.  
  2455.   /* Handle end of function.  */
  2456.   if (target == 0)
  2457.     {
  2458.       *res = end_of_function_needs;
  2459.       return;
  2460.     }
  2461.  
  2462.   /* We have to assume memory is needed, but the CC isn't.  */
  2463.   res->memory = 1;
  2464.   res->volatil = res->unch_memory = 0;
  2465.   res->cc = 0;
  2466.  
  2467.   /* See if we have computed this value already.  */
  2468.   for (tinfo = target_hash_table[INSN_UID (target) % TARGET_HASH_PRIME];
  2469.        tinfo; tinfo = tinfo->next)
  2470.     if (tinfo->uid == INSN_UID (target))
  2471.       break;
  2472.  
  2473.   /* Start by getting the basic block number.  If we have saved information,
  2474.      we can get it from there unless the insn at the start of the basic block
  2475.      has been deleted.  */
  2476.   if (tinfo && tinfo->block != -1
  2477.       && ! INSN_DELETED_P (basic_block_head[tinfo->block]))
  2478.     b = tinfo->block;
  2479.  
  2480.   if (b == -1)
  2481.     b = find_basic_block (target);
  2482.  
  2483.   if (tinfo)
  2484.     {
  2485.       /* If the information is up-to-date, use it.  Otherwise, we will
  2486.      update it below.  */
  2487.       if (b == tinfo->block && b != -1 && tinfo->bb_tick == bb_ticks[b])
  2488.     {
  2489.       COPY_HARD_REG_SET (res->regs, tinfo->live_regs);
  2490.       return;
  2491.     }
  2492.     }
  2493.   else
  2494.     {
  2495.       /* Allocate a place to put our results and chain it into the 
  2496.      hash table.  */
  2497.       tinfo = (struct target_info *) oballoc (sizeof (struct target_info));
  2498.       tinfo->uid = INSN_UID (target);
  2499.       tinfo->block = b;
  2500.       tinfo->next = target_hash_table[INSN_UID (target) % TARGET_HASH_PRIME];
  2501.       target_hash_table[INSN_UID (target) % TARGET_HASH_PRIME] = tinfo;
  2502.     }
  2503.  
  2504.   CLEAR_HARD_REG_SET (pending_dead_regs);
  2505.  
  2506.   /* If we found a basic block, get the live registers from it and update
  2507.      them with anything set or killed between its start and the insn before
  2508.      TARGET.  Otherwise, we must assume everything is live.  */
  2509.   if (b != -1)
  2510.     {
  2511.       regset regs_live = basic_block_live_at_start[b];
  2512.       int offset, j;
  2513.       REGSET_ELT_TYPE bit;
  2514.       int regno;
  2515.       rtx start_insn, stop_insn;
  2516.  
  2517.       /* Compute hard regs live at start of block -- this is the real hard regs
  2518.      marked live, plus live pseudo regs that have been renumbered to
  2519.      hard regs.  */
  2520.  
  2521. #ifdef HARD_REG_SET
  2522.       current_live_regs = *regs_live;
  2523. #else
  2524.       COPY_HARD_REG_SET (current_live_regs, regs_live);
  2525. #endif
  2526.  
  2527.       for (offset = 0, i = 0; offset < regset_size; offset++)
  2528.     {
  2529.       if (regs_live[offset] == 0)
  2530.         i += REGSET_ELT_BITS;
  2531.       else
  2532.         for (bit = 1; bit && i < max_regno; bit <<= 1, i++)
  2533.           if ((regs_live[offset] & bit)
  2534.           && (regno = reg_renumber[i]) >= 0)
  2535.         for (j = regno;
  2536.              j < regno + HARD_REGNO_NREGS (regno,
  2537.                            PSEUDO_REGNO_MODE (i));
  2538.              j++)
  2539.           SET_HARD_REG_BIT (current_live_regs, j);
  2540.     }
  2541.  
  2542.       /* Get starting and ending insn, handling the case where each might
  2543.      be a SEQUENCE.  */
  2544.       start_insn = (b == 0 ? get_insns () : basic_block_head[b]);
  2545.       stop_insn = target;
  2546.  
  2547.       if (GET_CODE (start_insn) == INSN
  2548.       && GET_CODE (PATTERN (start_insn)) == SEQUENCE)
  2549.     start_insn = XVECEXP (PATTERN (start_insn), 0, 0);
  2550.  
  2551.       if (GET_CODE (stop_insn) == INSN
  2552.       && GET_CODE (PATTERN (stop_insn)) == SEQUENCE)
  2553.     stop_insn = next_insn (PREV_INSN (stop_insn));
  2554.  
  2555.       for (insn = start_insn; insn != stop_insn;
  2556.        insn = next_insn_no_annul (insn))
  2557.     {
  2558.       rtx link;
  2559.       rtx real_insn = insn;
  2560.  
  2561.       /* If this insn is from the target of a branch, it isn't going to
  2562.          be used in the sequel.  If it is used in both cases, this
  2563.          test will not be true.  */
  2564.       if (INSN_FROM_TARGET_P (insn))
  2565.         continue;
  2566.  
  2567.       /* If this insn is a USE made by update_block, we care about the
  2568.          underlying insn.  */
  2569.       if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == USE
  2570.           && GET_RTX_CLASS (GET_CODE (XEXP (PATTERN (insn), 0))) == 'i')
  2571.           real_insn = XEXP (PATTERN (insn), 0);
  2572.  
  2573.       if (GET_CODE (real_insn) == CALL_INSN)
  2574.         {
  2575.           /* CALL clobbers all call-used regs that aren't fixed except
  2576.          sp, ap, and fp.  Do this before setting the result of the
  2577.          call live.  */
  2578.           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  2579.         if (call_used_regs[i]
  2580.             && i != STACK_POINTER_REGNUM && i != FRAME_POINTER_REGNUM
  2581.             && i != ARG_POINTER_REGNUM
  2582. #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
  2583.             && i != HARD_FRAME_POINTER_REGNUM
  2584. #endif
  2585. #if ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
  2586.             && ! (i == ARG_POINTER_REGNUM && fixed_regs[i])
  2587. #endif
  2588. #ifdef PIC_OFFSET_TABLE_REGNUM
  2589.             && ! (i == PIC_OFFSET_TABLE_REGNUM && flag_pic)
  2590. #endif
  2591.             )
  2592.           CLEAR_HARD_REG_BIT (current_live_regs, i);
  2593.  
  2594.           /* A CALL_INSN sets any global register live, since it may
  2595.          have been modified by the call.  */
  2596.           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  2597.         if (global_regs[i])
  2598.           SET_HARD_REG_BIT (current_live_regs, i);
  2599.         }
  2600.  
  2601.       /* Mark anything killed in an insn to be deadened at the next
  2602.          label.  Ignore USE insns; the only REG_DEAD notes will be for
  2603.          parameters.  But they might be early.  A CALL_INSN will usually
  2604.          clobber registers used for parameters.  It isn't worth bothering
  2605.          with the unlikely case when it won't.  */
  2606.       if ((GET_CODE (real_insn) == INSN
  2607.            && GET_CODE (PATTERN (real_insn)) != USE
  2608.            && GET_CODE (PATTERN (real_insn)) != CLOBBER)
  2609.           || GET_CODE (real_insn) == JUMP_INSN
  2610.           || GET_CODE (real_insn) == CALL_INSN)
  2611.         {
  2612.           for (link = REG_NOTES (real_insn); link; link = XEXP (link, 1))
  2613.         if (REG_NOTE_KIND (link) == REG_DEAD
  2614.             && GET_CODE (XEXP (link, 0)) == REG
  2615.             && REGNO (XEXP (link, 0)) < FIRST_PSEUDO_REGISTER)
  2616.           {
  2617.             int first_regno = REGNO (XEXP (link, 0));
  2618.             int last_regno
  2619.               = (first_regno
  2620.              + HARD_REGNO_NREGS (first_regno,
  2621.                          GET_MODE (XEXP (link, 0))));
  2622.              
  2623.             for (i = first_regno; i < last_regno; i++)
  2624.               SET_HARD_REG_BIT (pending_dead_regs, i);
  2625.           }
  2626.  
  2627.           note_stores (PATTERN (real_insn), update_live_status);
  2628.  
  2629.           /* If any registers were unused after this insn, kill them.
  2630.          These notes will always be accurate.  */
  2631.           for (link = REG_NOTES (real_insn); link; link = XEXP (link, 1))
  2632.         if (REG_NOTE_KIND (link) == REG_UNUSED
  2633.             && GET_CODE (XEXP (link, 0)) == REG
  2634.             && REGNO (XEXP (link, 0)) < FIRST_PSEUDO_REGISTER)
  2635.           {
  2636.             int first_regno = REGNO (XEXP (link, 0));
  2637.             int last_regno
  2638.               = (first_regno
  2639.              + HARD_REGNO_NREGS (first_regno,
  2640.                          GET_MODE (XEXP (link, 0))));
  2641.              
  2642.             for (i = first_regno; i < last_regno; i++)
  2643.               CLEAR_HARD_REG_BIT (current_live_regs, i);
  2644.           }
  2645.         }
  2646.  
  2647.       else if (GET_CODE (real_insn) == CODE_LABEL)
  2648.         {
  2649.           /* A label clobbers the pending dead registers since neither
  2650.          reload nor jump will propagate a value across a label.  */
  2651.           AND_COMPL_HARD_REG_SET (current_live_regs, pending_dead_regs);
  2652.           CLEAR_HARD_REG_SET (pending_dead_regs);
  2653.         }
  2654.  
  2655.       /* The beginning of the epilogue corresponds to the end of the
  2656.          RTL chain when there are no epilogue insns.  Certain resources
  2657.          are implicitly required at that point.  */
  2658.       else if (GET_CODE (real_insn) == NOTE
  2659.             && NOTE_LINE_NUMBER (real_insn) == NOTE_INSN_EPILOGUE_BEG)
  2660.         IOR_HARD_REG_SET (current_live_regs, start_of_epilogue_needs.regs);
  2661.     }
  2662.  
  2663.       COPY_HARD_REG_SET (res->regs, current_live_regs);
  2664.       tinfo->block = b;
  2665.       tinfo->bb_tick = bb_ticks[b];
  2666.     }
  2667.   else
  2668.     /* We didn't find the start of a basic block.  Assume everything
  2669.        in use.  This should happen only extremely rarely.  */
  2670.     SET_HARD_REG_SET (res->regs);
  2671.  
  2672.   /* Now step forward from TARGET looking for registers that are set before
  2673.      they are used.  These are dead.  If we pass a label, any pending dead
  2674.      registers that weren't yet used can be made dead.  Stop when we pass a
  2675.      conditional JUMP_INSN; follow the first few unconditional branches.  */
  2676.  
  2677.   CLEAR_RESOURCE (&set);
  2678.   CLEAR_RESOURCE (&needed);
  2679.  
  2680.   for (insn = target; insn; insn = next)
  2681.     {
  2682.       rtx this_jump_insn = insn;
  2683.  
  2684.       next = NEXT_INSN (insn);
  2685.       switch (GET_CODE (insn))
  2686.     {
  2687.     case CODE_LABEL:
  2688.       AND_COMPL_HARD_REG_SET (pending_dead_regs, needed.regs);
  2689.       AND_COMPL_HARD_REG_SET (res->regs, pending_dead_regs);
  2690.       CLEAR_HARD_REG_SET (pending_dead_regs);
  2691.       continue;
  2692.  
  2693.     case BARRIER:
  2694.     case NOTE:
  2695.       continue;
  2696.  
  2697.     case INSN:
  2698.       if (GET_CODE (PATTERN (insn)) == USE)
  2699.         {
  2700.           /* If INSN is a USE made by update_block, we care about the
  2701.          underlying insn.  Any registers set by the underlying insn
  2702.          are live since the insn is being done somewhere else.  */
  2703.           if (GET_RTX_CLASS (GET_CODE (XEXP (PATTERN (insn), 0))) == 'i')
  2704.         mark_set_resources (XEXP (PATTERN (insn), 0), res, 0, 1);
  2705.  
  2706.           /* All other USE insns are to be ignored.  */
  2707.           continue;
  2708.         }
  2709.       else if (GET_CODE (PATTERN (insn)) == CLOBBER)
  2710.         continue;
  2711.       else if (GET_CODE (PATTERN (insn)) == SEQUENCE)
  2712.         {
  2713.           /* An unconditional jump can be used to fill the delay slot
  2714.          of a call, so search for a JUMP_INSN in any position.  */
  2715.           for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
  2716.         {
  2717.           this_jump_insn = XVECEXP (PATTERN (insn), 0, i);
  2718.           if (GET_CODE (this_jump_insn) == JUMP_INSN)
  2719.             break;
  2720.         }
  2721.         }
  2722.     }
  2723.  
  2724.       if (GET_CODE (this_jump_insn) == JUMP_INSN)
  2725.     {
  2726.       if (jump_count++ < 10
  2727.           && (simplejump_p (this_jump_insn)
  2728.           || GET_CODE (PATTERN (this_jump_insn)) == RETURN))
  2729.         {
  2730.           next = next_active_insn (JUMP_LABEL (this_jump_insn));
  2731.           if (jump_insn == 0)
  2732.         {
  2733.           jump_insn = insn;
  2734.           jump_target = JUMP_LABEL (this_jump_insn);
  2735.         }
  2736.         }
  2737.       else
  2738.         break;
  2739.     }
  2740.  
  2741.       mark_referenced_resources (insn, &needed, 1);
  2742.       mark_set_resources (insn, &set, 0, 1);
  2743.  
  2744.       COPY_HARD_REG_SET (scratch, set.regs);
  2745.       AND_COMPL_HARD_REG_SET (scratch, needed.regs);
  2746.       AND_COMPL_HARD_REG_SET (res->regs, scratch);
  2747.     }
  2748.  
  2749.   /* If we hit an unconditional branch, we have another way of finding out
  2750.      what is live: we can see what is live at the branch target and include
  2751.      anything used but not set before the branch.  The only things that are
  2752.      live are those that are live using the above test and the test below.
  2753.  
  2754.      Don't try this if we expired our jump count above, since that would
  2755.      mean there may be an infinite loop in the function being compiled.  */
  2756.  
  2757.   if (jump_insn && jump_count < 10)
  2758.     {
  2759.       struct resources new_resources;
  2760.       rtx stop_insn = next_active_insn (jump_insn);
  2761.  
  2762.       mark_target_live_regs (next_active_insn (jump_target), &new_resources);
  2763.       CLEAR_RESOURCE (&set);
  2764.       CLEAR_RESOURCE (&needed);
  2765.  
  2766.       /* Include JUMP_INSN in the needed registers.  */
  2767.       for (insn = target; insn != stop_insn; insn = next_active_insn (insn))
  2768.     {
  2769.       mark_referenced_resources (insn, &needed, 1);
  2770.  
  2771.       COPY_HARD_REG_SET (scratch, needed.regs);
  2772.       AND_COMPL_HARD_REG_SET (scratch, set.regs);
  2773.       IOR_HARD_REG_SET (new_resources.regs, scratch);
  2774.  
  2775.       mark_set_resources (insn, &set, 0, 1);
  2776.     }
  2777.  
  2778.       AND_HARD_REG_SET (res->regs, new_resources.regs);
  2779.     }
  2780.  
  2781.   COPY_HARD_REG_SET (tinfo->live_regs, res->regs);
  2782. }
  2783.  
  2784. /* Scan a function looking for insns that need a delay slot and find insns to
  2785.    put into the delay slot.
  2786.  
  2787.    NON_JUMPS_P is non-zero if we are to only try to fill non-jump insns (such
  2788.    as calls).  We do these first since we don't want jump insns (that are
  2789.    easier to fill) to get the only insns that could be used for non-jump insns.
  2790.    When it is zero, only try to fill JUMP_INSNs.
  2791.  
  2792.    When slots are filled in this manner, the insns (including the
  2793.    delay_insn) are put together in a SEQUENCE rtx.  In this fashion,
  2794.    it is possible to tell whether a delay slot has really been filled
  2795.    or not.  `final' knows how to deal with this, by communicating
  2796.    through FINAL_SEQUENCE.  */
  2797.  
  2798. static void
  2799. fill_simple_delay_slots (first, non_jumps_p)
  2800.      rtx first;
  2801.      int non_jumps_p;
  2802. {
  2803.   register rtx insn, pat, trial, next_trial;
  2804.   register int i, j;
  2805.   int num_unfilled_slots = unfilled_slots_next - unfilled_slots_base;
  2806.   struct resources needed, set;
  2807.   register int slots_to_fill, slots_filled;
  2808.   rtx delay_list;
  2809.  
  2810.   for (i = 0; i < num_unfilled_slots; i++)
  2811.     {
  2812.       int flags;
  2813.       /* Get the next insn to fill.  If it has already had any slots assigned,
  2814.      we can't do anything with it.  Maybe we'll improve this later.  */
  2815.  
  2816.       insn = unfilled_slots_base[i];
  2817.       if (insn == 0
  2818.       || INSN_DELETED_P (insn)
  2819.       || (GET_CODE (insn) == INSN
  2820.           && GET_CODE (PATTERN (insn)) == SEQUENCE)
  2821.       || (GET_CODE (insn) == JUMP_INSN && non_jumps_p)
  2822.       || (GET_CODE (insn) != JUMP_INSN && ! non_jumps_p))
  2823.     continue;
  2824.      
  2825.       if (GET_CODE (insn) == JUMP_INSN)
  2826.     flags = get_jump_flags (insn, JUMP_LABEL (insn));
  2827.       else
  2828.     flags = get_jump_flags (insn, NULL_RTX);
  2829.       slots_to_fill = num_delay_slots (insn);
  2830.       if (slots_to_fill == 0)
  2831.     abort ();
  2832.  
  2833.       /* This insn needs, or can use, some delay slots.  SLOTS_TO_FILL
  2834.      says how many.  After initialization, first try optimizing
  2835.  
  2836.      call _foo        call _foo
  2837.      nop            add %o7,.-L1,%o7
  2838.      b,a L1
  2839.      nop
  2840.  
  2841.      If this case applies, the delay slot of the call is filled with
  2842.      the unconditional jump.  This is done first to avoid having the
  2843.      delay slot of the call filled in the backward scan.  Also, since
  2844.      the unconditional jump is likely to also have a delay slot, that
  2845.      insn must exist when it is subsequently scanned.
  2846.  
  2847.      This is tried on each insn with delay slots as some machines
  2848.      have insns which perform calls, but are not represented as 
  2849.      CALL_INSNs.  */
  2850.  
  2851.       slots_filled = 0;
  2852.       delay_list = 0;
  2853.  
  2854.       if ((trial = next_active_insn (insn))
  2855.       && GET_CODE (trial) == JUMP_INSN
  2856.       && simplejump_p (trial)
  2857.       && eligible_for_delay (insn, slots_filled, trial, flags)
  2858.       && no_labels_between_p (insn, trial))
  2859.     {
  2860.       slots_filled++;
  2861.       delay_list = add_to_delay_list (trial, delay_list);
  2862.       /* Remove the unconditional jump from consideration for delay slot
  2863.          filling and unthread it.  */
  2864.       if (unfilled_slots_base[i + 1] == trial)
  2865.         unfilled_slots_base[i + 1] = 0;
  2866.       {
  2867.         rtx next = NEXT_INSN (trial);
  2868.         rtx prev = PREV_INSN (trial);
  2869.         if (prev)
  2870.           NEXT_INSN (prev) = next;
  2871.         if (next)
  2872.           PREV_INSN (next) = prev;
  2873.       }
  2874.     }
  2875.  
  2876.       /* Now, scan backwards from the insn to search for a potential
  2877.      delay-slot candidate.  Stop searching when a label or jump is hit.
  2878.  
  2879.      For each candidate, if it is to go into the delay slot (moved
  2880.      forward in execution sequence), it must not need or set any resources
  2881.      that were set by later insns and must not set any resources that
  2882.      are needed for those insns.
  2883.      
  2884.      The delay slot insn itself sets resources unless it is a call
  2885.      (in which case the called routine, not the insn itself, is doing
  2886.      the setting).  */
  2887.  
  2888.       if (slots_filled < slots_to_fill)
  2889.     {
  2890.       CLEAR_RESOURCE (&needed);
  2891.       CLEAR_RESOURCE (&set);
  2892.       mark_set_resources (insn, &set, 0, 0);
  2893.       mark_referenced_resources (insn, &needed, 0);
  2894.  
  2895.       for (trial = prev_nonnote_insn (insn); ! stop_search_p (trial, 1);
  2896.            trial = next_trial)
  2897.         {
  2898.           next_trial = prev_nonnote_insn (trial);
  2899.  
  2900.           /* This must be an INSN or CALL_INSN.  */
  2901.           pat = PATTERN (trial);
  2902.  
  2903.           /* USE and CLOBBER at this level was just for flow; ignore it.  */
  2904.           if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
  2905.         continue;
  2906.  
  2907.           /* Check for resource conflict first, to avoid unnecessary 
  2908.          splitting.  */
  2909.           if (! insn_references_resource_p (trial, &set, 1)
  2910.           && ! insn_sets_resource_p (trial, &set, 1)
  2911.           && ! insn_sets_resource_p (trial, &needed, 1)
  2912. #ifdef HAVE_cc0
  2913.           /* Can't separate set of cc0 from its use.  */
  2914.           && ! (reg_mentioned_p (cc0_rtx, pat)
  2915.             && ! sets_cc0_p (cc0_rtx, pat))
  2916. #endif
  2917.           )
  2918.         {
  2919.           trial = try_split (pat, trial, 1);
  2920.           next_trial = prev_nonnote_insn (trial);
  2921.           if (eligible_for_delay (insn, slots_filled, trial, flags))
  2922.             {
  2923.               /* In this case, we are searching backward, so if we
  2924.              find insns to put on the delay list, we want
  2925.              to put them at the head, rather than the
  2926.              tail, of the list.  */
  2927.  
  2928.               update_reg_dead_notes (trial, insn);
  2929.               delay_list = gen_rtx (INSN_LIST, VOIDmode,
  2930.                         trial, delay_list);
  2931.               update_block (trial, trial);
  2932.               delete_insn (trial);
  2933.               if (slots_to_fill == ++slots_filled)
  2934.             break;
  2935.               continue;
  2936.             }
  2937.         }
  2938.  
  2939.           mark_set_resources (trial, &set, 0, 1);
  2940.           mark_referenced_resources (trial, &needed, 1);
  2941.         }
  2942.     }
  2943.  
  2944.       /* If all needed slots haven't been filled, we come here.  */
  2945.  
  2946.       /* Try to optimize case of jumping around a single insn.  */
  2947. #if defined(ANNUL_IFFALSE_SLOTS) || defined(ANNUL_IFTRUE_SLOTS)
  2948.       if (slots_filled != slots_to_fill
  2949.       && delay_list == 0
  2950.       && GET_CODE (insn) == JUMP_INSN 
  2951.       && (condjump_p (insn) || condjump_in_parallel_p (insn)))
  2952.     {
  2953.       delay_list = optimize_skip (insn);
  2954.       if (delay_list)
  2955.         slots_filled += 1;
  2956.     }
  2957. #endif
  2958.  
  2959.       /* Try to get insns from beyond the insn needing the delay slot.
  2960.      These insns can neither set or reference resources set in insns being
  2961.      skipped, cannot set resources in the insn being skipped, and, if this
  2962.      is a CALL_INSN (or a CALL_INSN is passed), cannot trap (because the
  2963.      call might not return).
  2964.  
  2965.      If this is a conditional jump, see if it merges back to us early
  2966.      enough for us to pick up insns from the merge point.  Don't do
  2967.      this if there is another branch to our label unless we pass all of
  2968.      them.
  2969.  
  2970.      Another similar merge is if we jump to the same place that a
  2971.      later unconditional jump branches to.  In that case, we don't
  2972.      care about the number of uses of our label.  */
  2973.  
  2974.       if (slots_filled != slots_to_fill
  2975.           && (GET_CODE (insn) != JUMP_INSN
  2976.           || ((condjump_p (insn) || condjump_in_parallel_p (insn))
  2977.            && ! simplejump_p (insn)
  2978.            && JUMP_LABEL (insn) != 0)))
  2979.     {
  2980.       rtx target = 0;
  2981.       int maybe_never = 0;
  2982.       int passed_label = 0;
  2983.       int target_uses;
  2984.       struct resources needed_at_jump;
  2985.  
  2986.       CLEAR_RESOURCE (&needed);
  2987.       CLEAR_RESOURCE (&set);
  2988.  
  2989.       if (GET_CODE (insn) == CALL_INSN)
  2990.         {
  2991.           mark_set_resources (insn, &set, 0, 1);
  2992.           mark_referenced_resources (insn, &needed, 1);
  2993.           maybe_never = 1;
  2994.         }
  2995.       else 
  2996.         {
  2997.           mark_set_resources (insn, &set, 0, 1);
  2998.           mark_referenced_resources (insn, &needed, 1);
  2999.           if (GET_CODE (insn) == JUMP_INSN)
  3000.         {
  3001.           /* Get our target and show how many more uses we want to
  3002.              see before we hit the label.  */
  3003.           target = JUMP_LABEL (insn);
  3004.           target_uses = LABEL_NUSES (target) - 1;
  3005.         }
  3006.         
  3007.         }
  3008.  
  3009.       for (trial = next_nonnote_insn (insn); trial; trial = next_trial)
  3010.         {
  3011.           rtx pat, trial_delay;
  3012.  
  3013.           next_trial = next_nonnote_insn (trial);
  3014.  
  3015.           if (GET_CODE (trial) == CODE_LABEL)
  3016.         {
  3017.           passed_label = 1;
  3018.  
  3019.           /* If this is our target, see if we have seen all its uses.
  3020.              If so, indicate we have passed our target and ignore it.
  3021.              All other labels cause us to stop our search.  */
  3022.           if (trial == target && target_uses == 0)
  3023.             {
  3024.               target = 0;
  3025.               continue;
  3026.             }
  3027.           else
  3028.             break;
  3029.         }
  3030.           else if (GET_CODE (trial) == BARRIER)
  3031.         break;
  3032.  
  3033.           /* We must have an INSN, JUMP_INSN, or CALL_INSN.  */
  3034.           pat = PATTERN (trial);
  3035.  
  3036.           /* Stand-alone USE and CLOBBER are just for flow.  */
  3037.           if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
  3038.         continue;
  3039.  
  3040.           /* If this already has filled delay slots, get the insn needing
  3041.          the delay slots.  */
  3042.           if (GET_CODE (pat) == SEQUENCE)
  3043.         trial_delay = XVECEXP (pat, 0, 0);
  3044.           else
  3045.         trial_delay = trial;
  3046.  
  3047.           /* If this is a jump insn to our target, indicate that we have
  3048.          seen another jump to it.  If we aren't handling a conditional
  3049.          jump, stop our search. Otherwise, compute the needs at its
  3050.          target and add them to NEEDED.  */
  3051.           if (GET_CODE (trial_delay) == JUMP_INSN)
  3052.         {
  3053.           if (target == 0)
  3054.             break;
  3055.           else if (JUMP_LABEL (trial_delay) == target)
  3056.             target_uses--;
  3057.           else
  3058.             {
  3059.               mark_target_live_regs
  3060.             (next_active_insn (JUMP_LABEL (trial_delay)),
  3061.              &needed_at_jump);
  3062.               needed.memory |= needed_at_jump.memory;
  3063.               needed.unch_memory |= needed_at_jump.unch_memory;
  3064.               IOR_HARD_REG_SET (needed.regs, needed_at_jump.regs);
  3065.             }
  3066.         }
  3067.  
  3068.           /* See if we have a resource problem before we try to
  3069.          split.   */
  3070.           if (target == 0
  3071.           && GET_CODE (pat) != SEQUENCE
  3072.           && ! insn_references_resource_p (trial, &set, 1)
  3073.           && ! insn_sets_resource_p (trial, &set, 1)
  3074.           && ! insn_sets_resource_p (trial, &needed, 1)
  3075. #ifdef HAVE_cc0
  3076.           && ! (reg_mentioned_p (cc0_rtx, pat) && ! sets_cc0_p (pat))
  3077. #endif
  3078.           && ! (maybe_never && may_trap_p (pat))
  3079.           && (trial = try_split (pat, trial, 0))
  3080.           && eligible_for_delay (insn, slots_filled, trial, flags))
  3081.         {
  3082.           next_trial = next_nonnote_insn (trial);
  3083.           delay_list = add_to_delay_list (trial, delay_list);
  3084.  
  3085. #ifdef HAVE_cc0
  3086.           if (reg_mentioned_p (cc0_rtx, pat))
  3087.             link_cc0_insns (trial);
  3088. #endif
  3089.  
  3090.           if (passed_label)
  3091.             update_block (trial, trial);
  3092.           delete_insn (trial);
  3093.           if (slots_to_fill == ++slots_filled)
  3094.             break;
  3095.           continue;
  3096.         }
  3097.  
  3098.           mark_set_resources (trial, &set, 0, 1);
  3099.           mark_referenced_resources (trial, &needed, 1);
  3100.  
  3101.           /* Ensure we don't put insns between the setting of cc and the
  3102.          comparison by moving a setting of cc into an earlier delay
  3103.          slot since these insns could clobber the condition code.  */
  3104.           set.cc = 1;
  3105.  
  3106.           /* If this is a call or jump, we might not get here.  */
  3107.           if (GET_CODE (trial_delay) == CALL_INSN
  3108.           || GET_CODE (trial_delay) == JUMP_INSN)
  3109.         maybe_never = 1;
  3110.         }
  3111.  
  3112.       /* If there are slots left to fill and our search was stopped by an
  3113.          unconditional branch, try the insn at the branch target.  We can
  3114.          redirect the branch if it works. 
  3115.  
  3116.          Don't do this if the insn at the branch target is a branch.  */
  3117.       if (slots_to_fill != slots_filled
  3118.           && trial
  3119.           && GET_CODE (trial) == JUMP_INSN
  3120.           && simplejump_p (trial)
  3121.           && (target == 0 || JUMP_LABEL (trial) == target)
  3122.           && (next_trial = next_active_insn (JUMP_LABEL (trial))) != 0
  3123.           && ! (GET_CODE (next_trial) == INSN
  3124.             && GET_CODE (PATTERN (next_trial)) == SEQUENCE)
  3125.           && GET_CODE (next_trial) != JUMP_INSN
  3126.           && ! insn_references_resource_p (next_trial, &set, 1)
  3127.           && ! insn_sets_resource_p (next_trial, &set, 1)
  3128.           && ! insn_sets_resource_p (next_trial, &needed, 1)
  3129. #ifdef HAVE_cc0
  3130.           && ! reg_mentioned_p (cc0_rtx, PATTERN (next_trial))
  3131. #endif
  3132.           && ! (maybe_never && may_trap_p (PATTERN (next_trial)))
  3133.           && (next_trial = try_split (PATTERN (next_trial), next_trial, 0))
  3134.           && eligible_for_delay (insn, slots_filled, next_trial, flags))
  3135.         {
  3136.           rtx new_label = next_active_insn (next_trial);
  3137.  
  3138.           if (new_label != 0)
  3139.         new_label = get_label_before (new_label);
  3140.           else
  3141.         new_label = find_end_label ();
  3142.  
  3143.           delay_list 
  3144.         = add_to_delay_list (copy_rtx (next_trial), delay_list);
  3145.           slots_filled++;
  3146.           reorg_redirect_jump (trial, new_label);
  3147.  
  3148.           /* If we merged because we both jumped to the same place,
  3149.          redirect the original insn also.  */
  3150.           if (target)
  3151.         reorg_redirect_jump (insn, new_label);
  3152.         }
  3153.     }
  3154.  
  3155.       if (delay_list)
  3156.     unfilled_slots_base[i]
  3157.       = emit_delay_sequence (insn, delay_list,
  3158.                  slots_filled, slots_to_fill);
  3159.  
  3160.       if (slots_to_fill == slots_filled)
  3161.     unfilled_slots_base[i] = 0;
  3162.  
  3163.       note_delay_statistics (slots_filled, 0);
  3164.     }
  3165.  
  3166. #ifdef DELAY_SLOTS_FOR_EPILOGUE
  3167.   /* See if the epilogue needs any delay slots.  Try to fill them if so.
  3168.      The only thing we can do is scan backwards from the end of the 
  3169.      function.  If we did this in a previous pass, it is incorrect to do it
  3170.      again.  */
  3171.   if (current_function_epilogue_delay_list)
  3172.     return;
  3173.  
  3174.   slots_to_fill = DELAY_SLOTS_FOR_EPILOGUE;
  3175.   if (slots_to_fill == 0)
  3176.     return;
  3177.  
  3178.   slots_filled = 0;
  3179.   CLEAR_RESOURCE (&set);
  3180.  
  3181.   /* The frame pointer and stack pointer are needed at the beginning of
  3182.      the epilogue, so instructions setting them can not be put in the
  3183.      epilogue delay slot.  However, everything else needed at function
  3184.      end is safe, so we don't want to use end_of_function_needs here.  */
  3185.   CLEAR_RESOURCE (&needed);
  3186.   if (frame_pointer_needed)
  3187.     {
  3188.       SET_HARD_REG_BIT (needed.regs, FRAME_POINTER_REGNUM);
  3189. #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
  3190.       SET_HARD_REG_BIT (needed.regs, HARD_FRAME_POINTER_REGNUM);
  3191. #endif
  3192. #ifdef EXIT_IGNORE_STACK
  3193.       if (! EXIT_IGNORE_STACK)
  3194. #endif
  3195.     SET_HARD_REG_BIT (needed.regs, STACK_POINTER_REGNUM);
  3196.     }
  3197.   else
  3198.     SET_HARD_REG_BIT (needed.regs, STACK_POINTER_REGNUM);
  3199.  
  3200.   for (trial = get_last_insn (); ! stop_search_p (trial, 1);
  3201.        trial = PREV_INSN (trial))
  3202.     {
  3203.       if (GET_CODE (trial) == NOTE)
  3204.     continue;
  3205.       pat = PATTERN (trial);
  3206.       if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
  3207.     continue;
  3208.  
  3209.       if (! insn_references_resource_p (trial, &set, 1)
  3210.       && ! insn_sets_resource_p (trial, &needed, 1)
  3211.       && ! insn_sets_resource_p (trial, &set, 1)
  3212. #ifdef HAVE_cc0
  3213.       /* Don't want to mess with cc0 here.  */
  3214.       && ! reg_mentioned_p (cc0_rtx, pat)
  3215. #endif
  3216.       )
  3217.     {
  3218.       trial = try_split (pat, trial, 1);
  3219.       if (ELIGIBLE_FOR_EPILOGUE_DELAY (trial, slots_filled))
  3220.         {
  3221.           /* Here as well we are searching backward, so put the
  3222.          insns we find on the head of the list.  */
  3223.  
  3224.           current_function_epilogue_delay_list
  3225.         = gen_rtx (INSN_LIST, VOIDmode, trial,
  3226.                current_function_epilogue_delay_list);
  3227.           mark_referenced_resources (trial, &end_of_function_needs, 1);
  3228.           update_block (trial, trial);
  3229.           delete_insn (trial);
  3230.  
  3231.           /* Clear deleted bit so final.c will output the insn.  */
  3232.           INSN_DELETED_P (trial) = 0;
  3233.  
  3234.           if (slots_to_fill == ++slots_filled)
  3235.         break;
  3236.           continue;
  3237.         }
  3238.     }
  3239.  
  3240.       mark_set_resources (trial, &set, 0, 1);
  3241.       mark_referenced_resources (trial, &needed, 1);
  3242.     }
  3243.  
  3244.   note_delay_statistics (slots_filled, 0);
  3245. #endif
  3246. }
  3247.  
  3248. /* Try to find insns to place in delay slots.
  3249.  
  3250.    INSN is the jump needing SLOTS_TO_FILL delay slots.  It tests CONDITION
  3251.    or is an unconditional branch if CONDITION is const_true_rtx.
  3252.    *PSLOTS_FILLED is updated with the number of slots that we have filled.
  3253.  
  3254.    THREAD is a flow-of-control, either the insns to be executed if the
  3255.    branch is true or if the branch is false, THREAD_IF_TRUE says which.
  3256.  
  3257.    OPPOSITE_THREAD is the thread in the opposite direction.  It is used
  3258.    to see if any potential delay slot insns set things needed there.
  3259.  
  3260.    LIKELY is non-zero if it is extremely likely that the branch will be
  3261.    taken and THREAD_IF_TRUE is set.  This is used for the branch at the
  3262.    end of a loop back up to the top.
  3263.  
  3264.    OWN_THREAD and OWN_OPPOSITE_THREAD are true if we are the only user of the
  3265.    thread.  I.e., it is the fallthrough code of our jump or the target of the
  3266.    jump when we are the only jump going there.
  3267.  
  3268.    If OWN_THREAD is false, it must be the "true" thread of a jump.  In that
  3269.    case, we can only take insns from the head of the thread for our delay
  3270.    slot.  We then adjust the jump to point after the insns we have taken.  */
  3271.  
  3272. static rtx
  3273. fill_slots_from_thread (insn, condition, thread, opposite_thread, likely,
  3274.             thread_if_true, own_thread, own_opposite_thread,
  3275.             slots_to_fill, pslots_filled)
  3276.      rtx insn;
  3277.      rtx condition;
  3278.      rtx thread, opposite_thread;
  3279.      int likely;
  3280.      int thread_if_true;
  3281.      int own_thread, own_opposite_thread;
  3282.      int slots_to_fill, *pslots_filled;
  3283. {
  3284.   rtx new_thread;
  3285.   rtx delay_list = 0;
  3286.   struct resources opposite_needed, set, needed;
  3287.   rtx trial;
  3288.   int lose = 0;
  3289.   int must_annul = 0;
  3290.   int flags;
  3291.  
  3292.   /* Validate our arguments.  */
  3293.   if ((condition == const_true_rtx && ! thread_if_true)
  3294.       || (! own_thread && ! thread_if_true))
  3295.     abort ();
  3296.  
  3297.   flags = get_jump_flags (insn, JUMP_LABEL (insn));
  3298.  
  3299.   /* If our thread is the end of subroutine, we can't get any delay
  3300.      insns from that.  */
  3301.   if (thread == 0)
  3302.     return 0;
  3303.  
  3304.   /* If this is an unconditional branch, nothing is needed at the
  3305.      opposite thread.  Otherwise, compute what is needed there.  */
  3306.   if (condition == const_true_rtx)
  3307.     CLEAR_RESOURCE (&opposite_needed);
  3308.   else
  3309.     mark_target_live_regs (opposite_thread, &opposite_needed);
  3310.  
  3311.   /* If the insn at THREAD can be split, do it here to avoid having to
  3312.      update THREAD and NEW_THREAD if it is done in the loop below.  Also
  3313.      initialize NEW_THREAD.  */
  3314.  
  3315.   new_thread = thread = try_split (PATTERN (thread), thread, 0);
  3316.  
  3317.   /* Scan insns at THREAD.  We are looking for an insn that can be removed
  3318.      from THREAD (it neither sets nor references resources that were set
  3319.      ahead of it and it doesn't set anything needs by the insns ahead of
  3320.      it) and that either can be placed in an annulling insn or aren't
  3321.      needed at OPPOSITE_THREAD.  */
  3322.  
  3323.   CLEAR_RESOURCE (&needed);
  3324.   CLEAR_RESOURCE (&set);
  3325.  
  3326.   /* If we do not own this thread, we must stop as soon as we find
  3327.      something that we can't put in a delay slot, since all we can do
  3328.      is branch into THREAD at a later point.  Therefore, labels stop
  3329.      the search if this is not the `true' thread.  */
  3330.  
  3331.   for (trial = thread;
  3332.        ! stop_search_p (trial, ! thread_if_true) && (! lose || own_thread);
  3333.        trial = next_nonnote_insn (trial))
  3334.     {
  3335.       rtx pat, old_trial;
  3336.  
  3337.       /* If we have passed a label, we no longer own this thread.  */
  3338.       if (GET_CODE (trial) == CODE_LABEL)
  3339.     {
  3340.       own_thread = 0;
  3341.       continue;
  3342.     }
  3343.  
  3344.       pat = PATTERN (trial);
  3345.       if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
  3346.     continue;
  3347.  
  3348.       /* If TRIAL conflicts with the insns ahead of it, we lose.  Also,
  3349.      don't separate or copy insns that set and use CC0.  */
  3350.       if (! insn_references_resource_p (trial, &set, 1)
  3351.       && ! insn_sets_resource_p (trial, &set, 1)
  3352.       && ! insn_sets_resource_p (trial, &needed, 1)
  3353. #ifdef HAVE_cc0
  3354.       && ! (reg_mentioned_p (cc0_rtx, pat)
  3355.         && (! own_thread || ! sets_cc0_p (pat)))
  3356. #endif
  3357.       )
  3358.     {
  3359.       rtx prior_insn;
  3360.  
  3361.       /* If TRIAL is redundant with some insn before INSN, we don't
  3362.          actually need to add it to the delay list; we can merely pretend
  3363.          we did.  */
  3364.       if (prior_insn = redundant_insn (trial, insn, delay_list))
  3365.         {
  3366.           if (own_thread)
  3367.         {
  3368.           update_block (trial, thread);
  3369.           if (trial == thread)
  3370.             {
  3371.               thread = next_active_insn (thread);
  3372.               if (new_thread == trial)
  3373.             new_thread = thread;
  3374.             }
  3375.  
  3376.           delete_insn (trial);
  3377.         }
  3378.           else
  3379.         {
  3380.           update_reg_unused_notes (prior_insn, trial);
  3381.           new_thread = next_active_insn (trial);
  3382.         }
  3383.  
  3384.           continue;
  3385.         }
  3386.  
  3387.       /* There are two ways we can win:  If TRIAL doesn't set anything
  3388.          needed at the opposite thread and can't trap, or if it can
  3389.          go into an annulled delay slot.  */
  3390.       if (condition == const_true_rtx
  3391.           || (! insn_sets_resource_p (trial, &opposite_needed, 1)
  3392.           && ! may_trap_p (pat)))
  3393.         {
  3394.           old_trial = trial;
  3395.           trial = try_split (pat, trial, 0);
  3396.           if (new_thread == old_trial)
  3397.         new_thread = trial;
  3398.           if (thread == old_trial)
  3399.         thread = trial;
  3400.           pat = PATTERN (trial);
  3401.           if (eligible_for_delay (insn, *pslots_filled, trial, flags))
  3402.         goto winner;
  3403.         }
  3404.       else if (0
  3405. #ifdef ANNUL_IFTRUE_SLOTS
  3406.            || ! thread_if_true
  3407. #endif
  3408. #ifdef ANNUL_IFFALSE_SLOTS
  3409.            || thread_if_true
  3410. #endif
  3411.            )
  3412.         {
  3413.           old_trial = trial;
  3414.           trial = try_split (pat, trial, 0);
  3415.           if (new_thread == old_trial)
  3416.         new_thread = trial;
  3417.           pat = PATTERN (trial);
  3418.           if ((thread_if_true
  3419.            ? eligible_for_annul_false (insn, *pslots_filled, trial, flags)
  3420.            : eligible_for_annul_true (insn, *pslots_filled, trial, flags)))
  3421.         {
  3422.           rtx temp;
  3423.  
  3424.           must_annul = 1;
  3425.         winner:
  3426.  
  3427. #ifdef HAVE_cc0
  3428.           if (reg_mentioned_p (cc0_rtx, pat))
  3429.             link_cc0_insns (trial);
  3430. #endif
  3431.  
  3432.           /* If we own this thread, delete the insn.  If this is the
  3433.              destination of a branch, show that a basic block status
  3434.              may have been updated.  In any case, mark the new
  3435.              starting point of this thread.  */
  3436.           if (own_thread)
  3437.             {
  3438.               update_block (trial, thread);
  3439.               delete_insn (trial);
  3440.             }
  3441.           else
  3442.             new_thread = next_active_insn (trial);
  3443.  
  3444.           temp = own_thread ? trial : copy_rtx (trial);
  3445.           if (thread_if_true)
  3446.             INSN_FROM_TARGET_P (temp) = 1;
  3447.  
  3448.           delay_list = add_to_delay_list (temp, delay_list);
  3449.  
  3450.           if (slots_to_fill == ++(*pslots_filled))
  3451.             {
  3452.               /* Even though we have filled all the slots, we
  3453.              may be branching to a location that has a
  3454.              redundant insn.  Skip any if so.  */
  3455.               while (new_thread && ! own_thread
  3456.                  && ! insn_sets_resource_p (new_thread, &set, 1)
  3457.                  && ! insn_sets_resource_p (new_thread, &needed, 1)
  3458.                  && ! insn_references_resource_p (new_thread,
  3459.                                   &set, 1)
  3460.                  && redundant_insn (new_thread, insn, delay_list))
  3461.             new_thread = next_active_insn (new_thread);
  3462.               break;
  3463.             }
  3464.  
  3465.           continue;
  3466.         }
  3467.         }
  3468.     }
  3469.  
  3470.       /* This insn can't go into a delay slot.  */
  3471.       lose = 1;
  3472.       mark_set_resources (trial, &set, 0, 1);
  3473.       mark_referenced_resources (trial, &needed, 1);
  3474.  
  3475.       /* Ensure we don't put insns between the setting of cc and the comparison
  3476.      by moving a setting of cc into an earlier delay slot since these insns
  3477.      could clobber the condition code.  */
  3478.       set.cc = 1;
  3479.  
  3480.       /* If this insn is a register-register copy and the next insn has
  3481.      a use of our destination, change it to use our source.  That way,
  3482.      it will become a candidate for our delay slot the next time
  3483.      through this loop.  This case occurs commonly in loops that
  3484.      scan a list.
  3485.  
  3486.      We could check for more complex cases than those tested below,
  3487.      but it doesn't seem worth it.  It might also be a good idea to try
  3488.      to swap the two insns.  That might do better.
  3489.  
  3490.      We can't do this if the next insn modifies our destination, because
  3491.      that would make the replacement into the insn invalid.  We also can't
  3492.      do this if it modifies our source, because it might be an earlyclobber
  3493.      operand.  This latter test also prevents updating the contents of
  3494.      a PRE_INC.  */
  3495.  
  3496.       if (GET_CODE (trial) == INSN && GET_CODE (pat) == SET
  3497.       && GET_CODE (SET_SRC (pat)) == REG
  3498.       && GET_CODE (SET_DEST (pat)) == REG)
  3499.     {
  3500.       rtx next = next_nonnote_insn (trial);
  3501.  
  3502.       if (next && GET_CODE (next) == INSN
  3503.           && GET_CODE (PATTERN (next)) != USE
  3504.           && ! reg_set_p (SET_DEST (pat), next)
  3505.           && ! reg_set_p (SET_SRC (pat), next)
  3506.           && reg_referenced_p (SET_DEST (pat), PATTERN (next)))
  3507.         validate_replace_rtx (SET_DEST (pat), SET_SRC (pat), next);
  3508.     }
  3509.     }
  3510.  
  3511.   /* If we stopped on a branch insn that has delay slots, see if we can
  3512.      steal some of the insns in those slots.  */
  3513.   if (trial && GET_CODE (trial) == INSN
  3514.       && GET_CODE (PATTERN (trial)) == SEQUENCE
  3515.       && GET_CODE (XVECEXP (PATTERN (trial), 0, 0)) == JUMP_INSN)
  3516.     {
  3517.       /* If this is the `true' thread, we will want to follow the jump,
  3518.      so we can only do this if we have taken everything up to here.  */
  3519.       if (thread_if_true && trial == new_thread)
  3520.     delay_list
  3521.       = steal_delay_list_from_target (insn, condition, PATTERN (trial),
  3522.                       delay_list, &set, &needed,
  3523.                       &opposite_needed, slots_to_fill,
  3524.                       pslots_filled, &must_annul,
  3525.                       &new_thread);
  3526.       else if (! thread_if_true)
  3527.     delay_list
  3528.       = steal_delay_list_from_fallthrough (insn, condition,
  3529.                            PATTERN (trial),
  3530.                            delay_list, &set, &needed,
  3531.                            &opposite_needed, slots_to_fill,
  3532.                            pslots_filled, &must_annul);
  3533.     }
  3534.  
  3535.   /* If we haven't found anything for this delay slot and it is very
  3536.      likely that the branch will be taken, see if the insn at our target
  3537.      increments or decrements a register with an increment that does not
  3538.      depend on the destination register.  If so, try to place the opposite
  3539.      arithmetic insn after the jump insn and put the arithmetic insn in the
  3540.      delay slot.  If we can't do this, return.  */
  3541.   if (delay_list == 0 && likely && new_thread && GET_CODE (new_thread) == INSN)
  3542.     {
  3543.       rtx pat = PATTERN (new_thread);
  3544.       rtx dest;
  3545.       rtx src;
  3546.  
  3547.       trial = new_thread;
  3548.       pat = PATTERN (trial);
  3549.  
  3550.       if (GET_CODE (trial) != INSN || GET_CODE (pat) != SET
  3551.       || ! eligible_for_delay (insn, 0, trial, flags))
  3552.     return 0;
  3553.  
  3554.       dest = SET_DEST (pat), src = SET_SRC (pat);
  3555.       if ((GET_CODE (src) == PLUS || GET_CODE (src) == MINUS)
  3556.       && rtx_equal_p (XEXP (src, 0), dest)
  3557.       && ! reg_overlap_mentioned_p (dest, XEXP (src, 1)))
  3558.     {
  3559.       rtx other = XEXP (src, 1);
  3560.       rtx new_arith;
  3561.       rtx ninsn;
  3562.  
  3563.       /* If this is a constant adjustment, use the same code with
  3564.          the negated constant.  Otherwise, reverse the sense of the
  3565.          arithmetic.  */
  3566.       if (GET_CODE (other) == CONST_INT)
  3567.         new_arith = gen_rtx (GET_CODE (src), GET_MODE (src), dest,
  3568.                  negate_rtx (GET_MODE (src), other));
  3569.       else
  3570.         new_arith = gen_rtx (GET_CODE (src) == PLUS ? MINUS : PLUS,
  3571.                  GET_MODE (src), dest, other);
  3572.  
  3573.       ninsn = emit_insn_after (gen_rtx (SET, VOIDmode, dest, new_arith),
  3574.                    insn);
  3575.  
  3576.       if (recog_memoized (ninsn) < 0
  3577.           || (insn_extract (ninsn),
  3578.           ! constrain_operands (INSN_CODE (ninsn), 1)))
  3579.         {
  3580.           delete_insn (ninsn);
  3581.           return 0;
  3582.         }
  3583.  
  3584.       if (own_thread)
  3585.         {
  3586.           update_block (trial, thread);
  3587.           delete_insn (trial);
  3588.         }
  3589.       else
  3590.         new_thread = next_active_insn (trial);
  3591.  
  3592.       ninsn = own_thread ? trial : copy_rtx (trial);
  3593.       if (thread_if_true)
  3594.         INSN_FROM_TARGET_P (ninsn) = 1;
  3595.  
  3596.       delay_list = add_to_delay_list (ninsn, NULL_RTX);
  3597.       (*pslots_filled)++;
  3598.     }
  3599.     }
  3600.  
  3601.   if (delay_list && must_annul)
  3602.     INSN_ANNULLED_BRANCH_P (insn) = 1;
  3603.  
  3604.   /* If we are to branch into the middle of this thread, find an appropriate
  3605.      label or make a new one if none, and redirect INSN to it.  If we hit the
  3606.      end of the function, use the end-of-function label.  */
  3607.   if (new_thread != thread)
  3608.     {
  3609.       rtx label;
  3610.  
  3611.       if (! thread_if_true)
  3612.     abort ();
  3613.  
  3614.       if (new_thread && GET_CODE (new_thread) == JUMP_INSN
  3615.       && (simplejump_p (new_thread)
  3616.           || GET_CODE (PATTERN (new_thread)) == RETURN)
  3617.       && redirect_with_delay_list_safe_p (insn,
  3618.                           JUMP_LABEL (new_thread),
  3619.                           delay_list))
  3620.     new_thread = follow_jumps (JUMP_LABEL (new_thread));
  3621.  
  3622.       if (new_thread == 0)
  3623.     label = find_end_label ();
  3624.       else if (GET_CODE (new_thread) == CODE_LABEL)
  3625.     label = new_thread;
  3626.       else
  3627.     label = get_label_before (new_thread);
  3628.  
  3629.       reorg_redirect_jump (insn, label);
  3630.     }
  3631.  
  3632.   return delay_list;
  3633. }
  3634.  
  3635. /* Make another attempt to find insns to place in delay slots.
  3636.  
  3637.    We previously looked for insns located in front of the delay insn
  3638.    and, for non-jump delay insns, located behind the delay insn.
  3639.  
  3640.    Here only try to schedule jump insns and try to move insns from either
  3641.    the target or the following insns into the delay slot.  If annulling is
  3642.    supported, we will be likely to do this.  Otherwise, we can do this only
  3643.    if safe.  */
  3644.  
  3645. static void
  3646. fill_eager_delay_slots (first)
  3647.      rtx first;
  3648. {
  3649.   register rtx insn;
  3650.   register int i;
  3651.   int num_unfilled_slots = unfilled_slots_next - unfilled_slots_base;
  3652.  
  3653.   for (i = 0; i < num_unfilled_slots; i++)
  3654.     {
  3655.       rtx condition;
  3656.       rtx target_label, insn_at_target, fallthrough_insn;
  3657.       rtx delay_list = 0;
  3658.       int own_target;
  3659.       int own_fallthrough;
  3660.       int prediction, slots_to_fill, slots_filled;
  3661.  
  3662.       insn = unfilled_slots_base[i];
  3663.       if (insn == 0
  3664.       || INSN_DELETED_P (insn)
  3665.       || GET_CODE (insn) != JUMP_INSN
  3666.       || ! (condjump_p (insn) || condjump_in_parallel_p (insn)))
  3667.     continue;
  3668.  
  3669.       slots_to_fill = num_delay_slots (insn);
  3670.       if (slots_to_fill == 0)
  3671.     abort ();
  3672.  
  3673.       slots_filled = 0;
  3674.       target_label = JUMP_LABEL (insn);
  3675.       condition = get_branch_condition (insn, target_label);
  3676.  
  3677.       if (condition == 0)
  3678.     continue;
  3679.  
  3680.       /* Get the next active fallthough and target insns and see if we own
  3681.      them.  Then see whether the branch is likely true.  We don't need
  3682.      to do a lot of this for unconditional branches.  */
  3683.  
  3684.       insn_at_target = next_active_insn (target_label);
  3685.       own_target = own_thread_p (target_label, target_label, 0);
  3686.  
  3687.       if (condition == const_true_rtx)
  3688.     {
  3689.       own_fallthrough = 0;
  3690.       fallthrough_insn = 0;
  3691.       prediction = 2;
  3692.     }
  3693.       else
  3694.     {
  3695.       fallthrough_insn = next_active_insn (insn);
  3696.       own_fallthrough = own_thread_p (NEXT_INSN (insn), NULL_RTX, 1);
  3697.       prediction = mostly_true_jump (insn, condition);
  3698.     }
  3699.  
  3700.       /* If this insn is expected to branch, first try to get insns from our
  3701.      target, then our fallthrough insns.  If it is not, expected to branch,
  3702.      try the other order.  */
  3703.  
  3704.       if (prediction > 0)
  3705.     {
  3706.       delay_list
  3707.         = fill_slots_from_thread (insn, condition, insn_at_target,
  3708.                       fallthrough_insn, prediction == 2, 1,
  3709.                       own_target, own_fallthrough,
  3710.                       slots_to_fill, &slots_filled);
  3711.  
  3712.       if (delay_list == 0 && own_fallthrough)
  3713.         {
  3714.           /* Even though we didn't find anything for delay slots,
  3715.          we might have found a redundant insn which we deleted
  3716.          from the thread that was filled.  So we have to recompute
  3717.          the next insn at the target.  */
  3718.           target_label = JUMP_LABEL (insn);
  3719.           insn_at_target = next_active_insn (target_label);
  3720.  
  3721.           delay_list
  3722.         = fill_slots_from_thread (insn, condition, fallthrough_insn,
  3723.                       insn_at_target, 0, 0,
  3724.                       own_fallthrough, own_target,
  3725.                       slots_to_fill, &slots_filled);
  3726.         }
  3727.     }
  3728.       else
  3729.     {
  3730.       if (own_fallthrough)
  3731.         delay_list
  3732.           = fill_slots_from_thread (insn, condition, fallthrough_insn,
  3733.                     insn_at_target, 0, 0,
  3734.                     own_fallthrough, own_target,
  3735.                     slots_to_fill, &slots_filled);
  3736.  
  3737.       if (delay_list == 0)
  3738.         delay_list
  3739.           = fill_slots_from_thread (insn, condition, insn_at_target,
  3740.                     next_active_insn (insn), 0, 1,
  3741.                     own_target, own_fallthrough,
  3742.                     slots_to_fill, &slots_filled);
  3743.     }
  3744.  
  3745.       if (delay_list)
  3746.     unfilled_slots_base[i]
  3747.       = emit_delay_sequence (insn, delay_list,
  3748.                  slots_filled, slots_to_fill);
  3749.  
  3750.       if (slots_to_fill == slots_filled)
  3751.     unfilled_slots_base[i] = 0;
  3752.  
  3753.       note_delay_statistics (slots_filled, 1);
  3754.     }
  3755. }
  3756.  
  3757. /* Once we have tried two ways to fill a delay slot, make a pass over the
  3758.    code to try to improve the results and to do such things as more jump
  3759.    threading.  */
  3760.  
  3761. static void
  3762. relax_delay_slots (first)
  3763.      rtx first;
  3764. {
  3765.   register rtx insn, next, pat;
  3766.   register rtx trial, delay_insn, target_label;
  3767.  
  3768.   /* Look at every JUMP_INSN and see if we can improve it.  */
  3769.   for (insn = first; insn; insn = next)
  3770.     {
  3771.       rtx other;
  3772.  
  3773.       next = next_active_insn (insn);
  3774.  
  3775.       /* If this is a jump insn, see if it now jumps to a jump, jumps to
  3776.      the next insn, or jumps to a label that is not the last of a
  3777.      group of consecutive labels.  */
  3778.       if (GET_CODE (insn) == JUMP_INSN
  3779.       && (condjump_p (insn) || condjump_in_parallel_p (insn))
  3780.       && (target_label = JUMP_LABEL (insn)) != 0)
  3781.     {
  3782.       target_label = follow_jumps (target_label);
  3783.       target_label = prev_label (next_active_insn (target_label));
  3784.  
  3785.       if (target_label == 0)
  3786.         target_label = find_end_label ();
  3787.  
  3788.       if (next_active_insn (target_label) == next
  3789.           && ! condjump_in_parallel_p (insn))
  3790.         {
  3791.           delete_jump (insn);
  3792.           continue;
  3793.         }
  3794.  
  3795.       if (target_label != JUMP_LABEL (insn))
  3796.         reorg_redirect_jump (insn, target_label);
  3797.  
  3798.       /* See if this jump branches around a unconditional jump.
  3799.          If so, invert this jump and point it to the target of the
  3800.          second jump.  */
  3801.       if (next && GET_CODE (next) == JUMP_INSN
  3802.           && (simplejump_p (next) || GET_CODE (PATTERN (next)) == RETURN)
  3803.           && next_active_insn (target_label) == next_active_insn (next)
  3804.           && no_labels_between_p (insn, next))
  3805.         {
  3806.           rtx label = JUMP_LABEL (next);
  3807.  
  3808.           /* Be careful how we do this to avoid deleting code or
  3809.          labels that are momentarily dead.  See similar optimization
  3810.          in jump.c.
  3811.  
  3812.          We also need to ensure we properly handle the case when
  3813.          invert_jump fails.  */
  3814.  
  3815.           ++LABEL_NUSES (target_label);
  3816.           if (label)
  3817.         ++LABEL_NUSES (label);
  3818.  
  3819.           if (invert_jump (insn, label))
  3820.         {
  3821.           delete_insn (next);
  3822.           next = insn;
  3823.         }
  3824.  
  3825.           if (label)
  3826.         --LABEL_NUSES (label);
  3827.  
  3828.           if (--LABEL_NUSES (target_label) == 0)
  3829.         delete_insn (target_label);
  3830.  
  3831.           continue;
  3832.         }
  3833.     }
  3834.       
  3835.       /* If this is an unconditional jump and the previous insn is a
  3836.      conditional jump, try reversing the condition of the previous
  3837.      insn and swapping our targets.  The next pass might be able to
  3838.      fill the slots.
  3839.  
  3840.      Don't do this if we expect the conditional branch to be true, because
  3841.      we would then be making the more common case longer.  */
  3842.  
  3843.       if (GET_CODE (insn) == JUMP_INSN
  3844.       && (simplejump_p (insn) || GET_CODE (PATTERN (insn)) == RETURN)
  3845.       && (other = prev_active_insn (insn)) != 0
  3846.       && (condjump_p (other) || condjump_in_parallel_p (other))
  3847.       && no_labels_between_p (other, insn)
  3848.       && 0 < mostly_true_jump (other,
  3849.                    get_branch_condition (other,
  3850.                              JUMP_LABEL (other))))
  3851.     {
  3852.       rtx other_target = JUMP_LABEL (other);
  3853.       target_label = JUMP_LABEL (insn);
  3854.  
  3855.       /* Increment the count of OTHER_TARGET, so it doesn't get deleted
  3856.          as we move the label.  */
  3857.       if (other_target)
  3858.         ++LABEL_NUSES (other_target);
  3859.  
  3860.       if (invert_jump (other, target_label))
  3861.         reorg_redirect_jump (insn, other_target);
  3862.  
  3863.       if (other_target)
  3864.         --LABEL_NUSES (other_target);
  3865.     }
  3866.  
  3867.       /* Now look only at cases where we have filled a delay slot.  */
  3868.       if (GET_CODE (insn) != INSN
  3869.       || GET_CODE (PATTERN (insn)) != SEQUENCE)
  3870.     continue;
  3871.  
  3872.       pat = PATTERN (insn);
  3873.       delay_insn = XVECEXP (pat, 0, 0);
  3874.  
  3875.       /* See if the first insn in the delay slot is redundant with some
  3876.      previous insn.  Remove it from the delay slot if so; then set up
  3877.      to reprocess this insn.  */
  3878.       if (redundant_insn (XVECEXP (pat, 0, 1), delay_insn, 0))
  3879.     {
  3880.       delete_from_delay_slot (XVECEXP (pat, 0, 1));
  3881.       next = prev_active_insn (next);
  3882.       continue;
  3883.     }
  3884.  
  3885.       /* Now look only at the cases where we have a filled JUMP_INSN.  */
  3886.       if (GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) != JUMP_INSN
  3887.       || ! (condjump_p (XVECEXP (PATTERN (insn), 0, 0))
  3888.         || condjump_in_parallel_p (XVECEXP (PATTERN (insn), 0, 0))))
  3889.     continue;
  3890.  
  3891.       target_label = JUMP_LABEL (delay_insn);
  3892.  
  3893.       if (target_label)
  3894.     {
  3895.       /* If this jump goes to another unconditional jump, thread it, but
  3896.          don't convert a jump into a RETURN here.  */
  3897.       trial = follow_jumps (target_label);
  3898.       /* We use next_real_insn instead of next_active_insn, so that
  3899.          the special USE insns emitted by reorg won't be ignored.
  3900.          If they are ignored, then they will get deleted if target_label
  3901.          is now unreachable, and that would cause mark_target_live_regs
  3902.          to fail.  */
  3903.       trial = prev_label (next_real_insn (trial));
  3904.       if (trial == 0 && target_label != 0)
  3905.         trial = find_end_label ();
  3906.  
  3907.       if (trial != target_label 
  3908.           && redirect_with_delay_slots_safe_p (delay_insn, trial, insn))
  3909.         {
  3910.           reorg_redirect_jump (delay_insn, trial);
  3911.           target_label = trial;
  3912.         }
  3913.  
  3914.       /* If the first insn at TARGET_LABEL is redundant with a previous
  3915.          insn, redirect the jump to the following insn process again.  */
  3916.       trial = next_active_insn (target_label);
  3917.       if (trial && GET_CODE (PATTERN (trial)) != SEQUENCE
  3918.           && redundant_insn (trial, insn, 0))
  3919.         {
  3920.           trial = next_active_insn (trial);
  3921.           if (trial == 0)
  3922.         target_label = find_end_label ();
  3923.           else
  3924.         target_label = get_label_before (trial);
  3925.           reorg_redirect_jump (delay_insn, target_label);
  3926.           next = insn;
  3927.           continue;
  3928.         }
  3929.  
  3930.       /* Similarly, if it is an unconditional jump with one insn in its
  3931.          delay list and that insn is redundant, thread the jump.  */
  3932.       if (trial && GET_CODE (PATTERN (trial)) == SEQUENCE
  3933.           && XVECLEN (PATTERN (trial), 0) == 2
  3934.           && GET_CODE (XVECEXP (PATTERN (trial), 0, 0)) == JUMP_INSN
  3935.           && (simplejump_p (XVECEXP (PATTERN (trial), 0, 0))
  3936.           || GET_CODE (PATTERN (XVECEXP (PATTERN (trial), 0, 0))) == RETURN)
  3937.           && redundant_insn (XVECEXP (PATTERN (trial), 0, 1), insn, 0))
  3938.         {
  3939.           target_label = JUMP_LABEL (XVECEXP (PATTERN (trial), 0, 0));
  3940.           if (target_label == 0)
  3941.         target_label = find_end_label ();
  3942.  
  3943.           if (redirect_with_delay_slots_safe_p (delay_insn, target_label, 
  3944.                             insn))
  3945.         {
  3946.           reorg_redirect_jump (delay_insn, target_label);
  3947.           next = insn;
  3948.           continue;
  3949.         }
  3950.         }
  3951.     }
  3952.  
  3953.       if (! INSN_ANNULLED_BRANCH_P (delay_insn)
  3954.       && prev_active_insn (target_label) == insn
  3955.       && ! condjump_in_parallel_p (delay_insn)
  3956. #ifdef HAVE_cc0
  3957.       /* If the last insn in the delay slot sets CC0 for some insn,
  3958.          various code assumes that it is in a delay slot.  We could
  3959.          put it back where it belonged and delete the register notes,
  3960.          but it doesn't seem worthwhile in this uncommon case.  */
  3961.       && ! find_reg_note (XVECEXP (pat, 0, XVECLEN (pat, 0) - 1),
  3962.                   REG_CC_USER, NULL_RTX)
  3963. #endif
  3964.       )
  3965.     {
  3966.       int i;
  3967.  
  3968.       /* All this insn does is execute its delay list and jump to the
  3969.          following insn.  So delete the jump and just execute the delay
  3970.          list insns.
  3971.  
  3972.          We do this by deleting the INSN containing the SEQUENCE, then
  3973.          re-emitting the insns separately, and then deleting the jump.
  3974.          This allows the count of the jump target to be properly
  3975.          decremented.  */
  3976.  
  3977.       /* Clear the from target bit, since these insns are no longer
  3978.          in delay slots.  */
  3979.       for (i = 0; i < XVECLEN (pat, 0); i++)
  3980.         INSN_FROM_TARGET_P (XVECEXP (pat, 0, i)) = 0;
  3981.  
  3982.       trial = PREV_INSN (insn);
  3983.       delete_insn (insn);
  3984.       emit_insn_after (pat, trial);
  3985.       delete_scheduled_jump (delay_insn);
  3986.       continue;
  3987.     }
  3988.  
  3989.       /* See if this is an unconditional jump around a single insn which is
  3990.      identical to the one in its delay slot.  In this case, we can just
  3991.      delete the branch and the insn in its delay slot.  */
  3992.       if (next && GET_CODE (next) == INSN
  3993.       && prev_label (next_active_insn (next)) == target_label
  3994.       && simplejump_p (insn)
  3995.       && XVECLEN (pat, 0) == 2
  3996.       && rtx_equal_p (PATTERN (next), PATTERN (XVECEXP (pat, 0, 1))))
  3997.     {
  3998.       delete_insn (insn);
  3999.       continue;
  4000.     }
  4001.  
  4002.       /* See if this jump (with its delay slots) branches around another
  4003.      jump (without delay slots).  If so, invert this jump and point
  4004.      it to the target of the second jump.  We cannot do this for
  4005.      annulled jumps, though.  Again, don't convert a jump to a RETURN
  4006.      here.  */
  4007.       if (! INSN_ANNULLED_BRANCH_P (delay_insn)
  4008.       && next && GET_CODE (next) == JUMP_INSN
  4009.       && (simplejump_p (next) || GET_CODE (PATTERN (next)) == RETURN)
  4010.       && next_active_insn (target_label) == next_active_insn (next)
  4011.       && no_labels_between_p (insn, next))
  4012.     {
  4013.       rtx label = JUMP_LABEL (next);
  4014.       rtx old_label = JUMP_LABEL (delay_insn);
  4015.  
  4016.       if (label == 0)
  4017.         label = find_end_label ();
  4018.  
  4019.       if (redirect_with_delay_slots_safe_p (delay_insn, label, insn))
  4020.         {
  4021.           /* Be careful how we do this to avoid deleting code or labels
  4022.          that are momentarily dead.  See similar optimization in
  4023.          jump.c  */
  4024.           if (old_label)
  4025.         ++LABEL_NUSES (old_label);
  4026.  
  4027.           if (invert_jump (delay_insn, label))
  4028.         {
  4029.           int i;
  4030.  
  4031.           /* Must update the INSN_FROM_TARGET_P bits now that
  4032.              the branch is reversed, so that mark_target_live_regs
  4033.              will handle the delay slot insn correctly.  */
  4034.           for (i = 1; i < XVECLEN (PATTERN (insn), 0); i++)
  4035.             {
  4036.               rtx slot = XVECEXP (PATTERN (insn), 0, i);
  4037.               INSN_FROM_TARGET_P (slot) = ! INSN_FROM_TARGET_P (slot);
  4038.             }
  4039.  
  4040.           delete_insn (next);
  4041.           next = insn;
  4042.         }
  4043.  
  4044.           if (old_label && --LABEL_NUSES (old_label) == 0)
  4045.         delete_insn (old_label);
  4046.           continue;
  4047.         }
  4048.     }
  4049.  
  4050.       /* If we own the thread opposite the way this insn branches, see if we
  4051.      can merge its delay slots with following insns.  */
  4052.       if (INSN_FROM_TARGET_P (XVECEXP (pat, 0, 1))
  4053.       && own_thread_p (NEXT_INSN (insn), 0, 1))
  4054.     try_merge_delay_insns (insn, next);
  4055.       else if (! INSN_FROM_TARGET_P (XVECEXP (pat, 0, 1))
  4056.            && own_thread_p (target_label, target_label, 0))
  4057.     try_merge_delay_insns (insn, next_active_insn (target_label));
  4058.  
  4059.       /* If we get here, we haven't deleted INSN.  But we may have deleted
  4060.      NEXT, so recompute it.  */
  4061.       next = next_active_insn (insn);
  4062.     }
  4063. }
  4064.  
  4065. #ifdef HAVE_return
  4066.  
  4067. /* Look for filled jumps to the end of function label.  We can try to convert
  4068.    them into RETURN insns if the insns in the delay slot are valid for the
  4069.    RETURN as well.  */
  4070.  
  4071. static void
  4072. make_return_insns (first)
  4073.      rtx first;
  4074. {
  4075.   rtx insn, jump_insn, pat;
  4076.   rtx real_return_label = end_of_function_label;
  4077.   int slots, i;
  4078.  
  4079.   /* See if there is a RETURN insn in the function other than the one we
  4080.      made for END_OF_FUNCTION_LABEL.  If so, set up anything we can't change
  4081.      into a RETURN to jump to it.  */
  4082.   for (insn = first; insn; insn = NEXT_INSN (insn))
  4083.     if (GET_CODE (insn) == JUMP_INSN && GET_CODE (PATTERN (insn)) == RETURN)
  4084.       {
  4085.     real_return_label = get_label_before (insn);
  4086.     break;
  4087.       }
  4088.   
  4089.   /* Show an extra usage of REAL_RETURN_LABEL so it won't go away if it
  4090.      was equal to END_OF_FUNCTION_LABEL.  */
  4091.   LABEL_NUSES (real_return_label)++;
  4092.  
  4093.   /* Clear the list of insns to fill so we can use it.  */
  4094.   obstack_free (&unfilled_slots_obstack, unfilled_firstobj);
  4095.  
  4096.   for (insn = first; insn; insn = NEXT_INSN (insn))
  4097.     {
  4098.       int flags;
  4099.  
  4100.       /* Only look at filled JUMP_INSNs that go to the end of function
  4101.      label.  */
  4102.       if (GET_CODE (insn) != INSN
  4103.       || GET_CODE (PATTERN (insn)) != SEQUENCE
  4104.       || GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) != JUMP_INSN
  4105.       || JUMP_LABEL (XVECEXP (PATTERN (insn), 0, 0)) != end_of_function_label)
  4106.     continue;
  4107.  
  4108.       pat = PATTERN (insn);
  4109.       jump_insn = XVECEXP (pat, 0, 0);
  4110.  
  4111.       /* If we can't make the jump into a RETURN, try to redirect it to the best
  4112.      RETURN and go on to the next insn.  */
  4113.       if (! reorg_redirect_jump (jump_insn, NULL_RTX))
  4114.     {
  4115.       /* Make sure redirecting the jump will not invalidate the delay
  4116.          slot insns.  */
  4117.       if (redirect_with_delay_slots_safe_p (jump_insn,
  4118.                         real_return_label,
  4119.                         insn))
  4120.         reorg_redirect_jump (jump_insn, real_return_label);
  4121.       continue;
  4122.     }
  4123.  
  4124.       /* See if this RETURN can accept the insns current in its delay slot.
  4125.      It can if it has more or an equal number of slots and the contents
  4126.      of each is valid.  */
  4127.  
  4128.       flags = get_jump_flags (jump_insn, JUMP_LABEL (jump_insn));
  4129.       slots = num_delay_slots (jump_insn);
  4130.       if (slots >= XVECLEN (pat, 0) - 1)
  4131.     {
  4132.       for (i = 1; i < XVECLEN (pat, 0); i++)
  4133.         if (! (
  4134. #ifdef ANNUL_IFFALSE_SLOTS
  4135.            (INSN_ANNULLED_BRANCH_P (jump_insn)
  4136.             && INSN_FROM_TARGET_P (XVECEXP (pat, 0, i)))
  4137.            ? eligible_for_annul_false (jump_insn, i - 1,
  4138.                            XVECEXP (pat, 0, i), flags) :
  4139. #endif
  4140. #ifdef ANNUL_IFTRUE_SLOTS
  4141.            (INSN_ANNULLED_BRANCH_P (jump_insn)
  4142.             && ! INSN_FROM_TARGET_P (XVECEXP (pat, 0, i)))
  4143.            ? eligible_for_annul_true (jump_insn, i - 1,
  4144.                           XVECEXP (pat, 0, i), flags) :
  4145. #endif
  4146.            eligible_for_delay (jump_insn, i -1, XVECEXP (pat, 0, i), flags)))
  4147.           break;
  4148.     }
  4149.       else
  4150.     i = 0;
  4151.  
  4152.       if (i == XVECLEN (pat, 0))
  4153.     continue;
  4154.  
  4155.       /* We have to do something with this insn.  If it is an unconditional
  4156.      RETURN, delete the SEQUENCE and output the individual insns,
  4157.      followed by the RETURN.  Then set things up so we try to find
  4158.      insns for its delay slots, if it needs some.  */
  4159.       if (GET_CODE (PATTERN (jump_insn)) == RETURN)
  4160.     {
  4161.       rtx prev = PREV_INSN (insn);
  4162.  
  4163.       delete_insn (insn);
  4164.       for (i = 1; i < XVECLEN (pat, 0); i++)
  4165.         prev = emit_insn_after (PATTERN (XVECEXP (pat, 0, i)), prev);
  4166.  
  4167.       insn = emit_jump_insn_after (PATTERN (jump_insn), prev);
  4168.       emit_barrier_after (insn);
  4169.  
  4170.       if (slots)
  4171.         obstack_ptr_grow (&unfilled_slots_obstack, insn);
  4172.     }
  4173.       else
  4174.     /* It is probably more efficient to keep this with its current
  4175.        delay slot as a branch to a RETURN.  */
  4176.     reorg_redirect_jump (jump_insn, real_return_label);
  4177.     }
  4178.  
  4179.   /* Now delete REAL_RETURN_LABEL if we never used it.  Then try to fill any
  4180.      new delay slots we have created.  */
  4181.   if (--LABEL_NUSES (real_return_label) == 0)
  4182.     delete_insn (real_return_label);
  4183.  
  4184.   fill_simple_delay_slots (first, 1);
  4185.   fill_simple_delay_slots (first, 0);
  4186. }
  4187. #endif
  4188.  
  4189. /* Try to find insns to place in delay slots.  */
  4190.  
  4191. void
  4192. dbr_schedule (first, file)
  4193.      rtx first;
  4194.      FILE *file;
  4195. {
  4196.   rtx insn, next, epilogue_insn = 0;
  4197.   int i;
  4198. #if 0
  4199.   int old_flag_no_peephole = flag_no_peephole;
  4200.  
  4201.   /* Execute `final' once in prescan mode to delete any insns that won't be
  4202.      used.  Don't let final try to do any peephole optimization--it will
  4203.      ruin dataflow information for this pass.  */
  4204.  
  4205.   flag_no_peephole = 1;
  4206.   final (first, 0, NO_DEBUG, 1, 1);
  4207.   flag_no_peephole = old_flag_no_peephole;
  4208. #endif
  4209.  
  4210.   /* If the current function has no insns other than the prologue and 
  4211.      epilogue, then do not try to fill any delay slots.  */
  4212.   if (n_basic_blocks == 0)
  4213.     return;
  4214.  
  4215.   /* Find the highest INSN_UID and allocate and initialize our map from
  4216.      INSN_UID's to position in code.  */
  4217.   for (max_uid = 0, insn = first; insn; insn = NEXT_INSN (insn))
  4218.     {
  4219.       if (INSN_UID (insn) > max_uid)
  4220.     max_uid = INSN_UID (insn);
  4221.       if (GET_CODE (insn) == NOTE
  4222.       && NOTE_LINE_NUMBER (insn) == NOTE_INSN_EPILOGUE_BEG)
  4223.     epilogue_insn = insn;
  4224.     }
  4225.  
  4226.   uid_to_ruid = (int *) alloca ((max_uid + 1) * sizeof (int *));
  4227.   for (i = 0, insn = first; insn; i++, insn = NEXT_INSN (insn))
  4228.     uid_to_ruid[INSN_UID (insn)] = i;
  4229.   
  4230.   /* Initialize the list of insns that need filling.  */
  4231.   if (unfilled_firstobj == 0)
  4232.     {
  4233.       gcc_obstack_init (&unfilled_slots_obstack);
  4234.       unfilled_firstobj = (rtx *) obstack_alloc (&unfilled_slots_obstack, 0);
  4235.     }
  4236.  
  4237.   for (insn = next_active_insn (first); insn; insn = next_active_insn (insn))
  4238.     {
  4239.       rtx target;
  4240.  
  4241.       INSN_ANNULLED_BRANCH_P (insn) = 0;
  4242.       INSN_FROM_TARGET_P (insn) = 0;
  4243.  
  4244.       /* Skip vector tables.  We can't get attributes for them.  */
  4245.       if (GET_CODE (insn) == JUMP_INSN
  4246.       && (GET_CODE (PATTERN (insn)) == ADDR_VEC
  4247.           || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC))
  4248.     continue;
  4249.     
  4250.       if (num_delay_slots (insn) > 0)
  4251.     obstack_ptr_grow (&unfilled_slots_obstack, insn);
  4252.  
  4253.       /* Ensure all jumps go to the last of a set of consecutive labels.  */
  4254.       if (GET_CODE (insn) == JUMP_INSN 
  4255.       && (condjump_p (insn) || condjump_in_parallel_p (insn))
  4256.       && JUMP_LABEL (insn) != 0
  4257.       && ((target = prev_label (next_active_insn (JUMP_LABEL (insn))))
  4258.           != JUMP_LABEL (insn)))
  4259.     redirect_jump (insn, target);
  4260.     }
  4261.  
  4262.   /* Indicate what resources are required to be valid at the end of the current
  4263.      function.  The condition code never is and memory always is.  If the
  4264.      frame pointer is needed, it is and so is the stack pointer unless
  4265.      EXIT_IGNORE_STACK is non-zero.  If the frame pointer is not needed, the
  4266.      stack pointer is.  Registers used to return the function value are
  4267.      needed.  Registers holding global variables are needed.  */
  4268.  
  4269.   end_of_function_needs.cc = 0;
  4270.   end_of_function_needs.memory = 1;
  4271.   end_of_function_needs.unch_memory = 0;
  4272.   CLEAR_HARD_REG_SET (end_of_function_needs.regs);
  4273.  
  4274.   if (frame_pointer_needed)
  4275.     {
  4276.       SET_HARD_REG_BIT (end_of_function_needs.regs, FRAME_POINTER_REGNUM);
  4277. #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
  4278.       SET_HARD_REG_BIT (end_of_function_needs.regs, HARD_FRAME_POINTER_REGNUM);
  4279. #endif
  4280. #ifdef EXIT_IGNORE_STACK
  4281.       if (! EXIT_IGNORE_STACK)
  4282. #endif
  4283.     SET_HARD_REG_BIT (end_of_function_needs.regs, STACK_POINTER_REGNUM);
  4284.     }
  4285.   else
  4286.     SET_HARD_REG_BIT (end_of_function_needs.regs, STACK_POINTER_REGNUM);
  4287.  
  4288.   if (current_function_return_rtx != 0
  4289.       && GET_CODE (current_function_return_rtx) == REG)
  4290.     mark_referenced_resources (current_function_return_rtx,
  4291.                    &end_of_function_needs, 1);
  4292.  
  4293.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  4294.     if (global_regs[i])
  4295.       SET_HARD_REG_BIT (end_of_function_needs.regs, i);
  4296.  
  4297.   /* The registers required to be live at the end of the function are
  4298.      represented in the flow information as being dead just prior to
  4299.      reaching the end of the function.  For example, the return of a value
  4300.      might be represented by a USE of the return register immediately
  4301.      followed by an unconditional jump to the return label where the
  4302.      return label is the end of the RTL chain.  The end of the RTL chain
  4303.      is then taken to mean that the return register is live.
  4304.  
  4305.      This sequence is no longer maintained when epilogue instructions are
  4306.      added to the RTL chain.  To reconstruct the original meaning, the
  4307.      start of the epilogue (NOTE_INSN_EPILOGUE_BEG) is regarded as the
  4308.      point where these registers become live (start_of_epilogue_needs).
  4309.      If epilogue instructions are present, the registers set by those
  4310.      instructions won't have been processed by flow.  Thus, those
  4311.      registers are additionally required at the end of the RTL chain
  4312.      (end_of_function_needs).  */
  4313.  
  4314.   start_of_epilogue_needs = end_of_function_needs;
  4315.  
  4316.   while (epilogue_insn = next_nonnote_insn (epilogue_insn))
  4317.     mark_set_resources (epilogue_insn, &end_of_function_needs, 0, 1);
  4318.  
  4319.   /* Show we haven't computed an end-of-function label yet.  */
  4320.   end_of_function_label = 0;
  4321.  
  4322.   /* Allocate and initialize the tables used by mark_target_live_regs.  */
  4323.   target_hash_table
  4324.     = (struct target_info **) alloca ((TARGET_HASH_PRIME
  4325.                        * sizeof (struct target_info *)));
  4326.   bzero ((char *) target_hash_table,
  4327.      TARGET_HASH_PRIME * sizeof (struct target_info *));
  4328.  
  4329.   bb_ticks = (int *) alloca (n_basic_blocks * sizeof (int));
  4330.   bzero ((char *) bb_ticks, n_basic_blocks * sizeof (int));
  4331.  
  4332.   /* Initialize the statistics for this function.  */
  4333.   bzero ((char *) num_insns_needing_delays, sizeof num_insns_needing_delays);
  4334.   bzero ((char *) num_filled_delays, sizeof num_filled_delays);
  4335.  
  4336.   /* Now do the delay slot filling.  Try everything twice in case earlier
  4337.      changes make more slots fillable.  */
  4338.  
  4339.   for (reorg_pass_number = 0;
  4340.        reorg_pass_number < MAX_REORG_PASSES;
  4341.        reorg_pass_number++)
  4342.     {
  4343.       fill_simple_delay_slots (first, 1);
  4344.       fill_simple_delay_slots (first, 0);
  4345.       fill_eager_delay_slots (first);
  4346.       relax_delay_slots (first);
  4347.     }
  4348.  
  4349.   /* Delete any USE insns made by update_block; subsequent passes don't need
  4350.      them or know how to deal with them.  */
  4351.   for (insn = first; insn; insn = next)
  4352.     {
  4353.       next = NEXT_INSN (insn);
  4354.  
  4355.       if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == USE
  4356.       && GET_RTX_CLASS (GET_CODE (XEXP (PATTERN (insn), 0))) == 'i')
  4357.     next = delete_insn (insn);
  4358.     }
  4359.  
  4360.   /* If we made an end of function label, indicate that it is now
  4361.      safe to delete it by undoing our prior adjustment to LABEL_NUSES.
  4362.      If it is now unused, delete it.  */
  4363.   if (end_of_function_label && --LABEL_NUSES (end_of_function_label) == 0)
  4364.     delete_insn (end_of_function_label);
  4365.  
  4366. #ifdef HAVE_return
  4367.   if (HAVE_return && end_of_function_label != 0)
  4368.     make_return_insns (first);
  4369. #endif
  4370.  
  4371.   obstack_free (&unfilled_slots_obstack, unfilled_firstobj);
  4372.  
  4373.   /* It is not clear why the line below is needed, but it does seem to be.  */
  4374.   unfilled_firstobj = (rtx *) obstack_alloc (&unfilled_slots_obstack, 0);
  4375.  
  4376.   /* Reposition the prologue and epilogue notes in case we moved the
  4377.      prologue/epilogue insns.  */
  4378.   reposition_prologue_and_epilogue_notes (first);
  4379.  
  4380.   if (file)
  4381.     {
  4382.       register int i, j, need_comma;
  4383.  
  4384.       for (reorg_pass_number = 0;
  4385.        reorg_pass_number < MAX_REORG_PASSES;
  4386.        reorg_pass_number++)
  4387.     {
  4388.       fprintf (file, ";; Reorg pass #%d:\n", reorg_pass_number + 1);
  4389.       for (i = 0; i < NUM_REORG_FUNCTIONS; i++)
  4390.         {
  4391.           need_comma = 0;
  4392.           fprintf (file, ";; Reorg function #%d\n", i);
  4393.  
  4394.           fprintf (file, ";; %d insns needing delay slots\n;; ",
  4395.                num_insns_needing_delays[i][reorg_pass_number]);
  4396.  
  4397.           for (j = 0; j < MAX_DELAY_HISTOGRAM; j++)
  4398.         if (num_filled_delays[i][j][reorg_pass_number])
  4399.           {
  4400.             if (need_comma)
  4401.               fprintf (file, ", ");
  4402.             need_comma = 1;
  4403.             fprintf (file, "%d got %d delays",
  4404.                  num_filled_delays[i][j][reorg_pass_number], j);
  4405.           }
  4406.           fprintf (file, "\n");
  4407.         }
  4408.     }
  4409.     }
  4410. }
  4411. #endif /* DELAY_SLOTS */
  4412.